├── .coveragerc ├── .github └── workflows │ └── test-tests4py.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── api-demo.ipynb ├── cloc.py ├── cloc.txt ├── extract.py ├── get_events.py ├── get_tests.py ├── notebooks ├── api.ipynb ├── cli.ipynb └── sfl.ipynb ├── pyproject.toml ├── requirements.py ├── requirements.txt ├── src └── tests4py │ ├── __init__.py │ ├── api │ ├── __init__.py │ ├── cache.py │ ├── config.py │ ├── default.py │ ├── logging.py │ ├── report.py │ ├── test.py │ └── utils.py │ ├── cli │ ├── __init__.py │ └── framework │ │ ├── __init__.py │ │ ├── cache.py │ │ ├── config.py │ │ ├── default.py │ │ ├── grammar.py │ │ ├── sfl.py │ │ ├── systemtest.py │ │ └── unittest.py │ ├── constants.py │ ├── environment.py │ ├── grammars │ ├── __init__.py │ ├── antlr.py │ ├── default.py │ ├── fuzzer.py │ ├── parser.py │ ├── python.py │ ├── tree.py │ └── utils.py │ ├── logger.py │ ├── projects │ ├── __init__.py │ ├── ansible.py │ ├── black.py │ ├── calculator.py │ ├── cookiecutter.py │ ├── expression.py │ ├── fastapi.py │ ├── httpie.py │ ├── keras.py │ ├── luigi.py │ ├── markup.py │ ├── matplotlib.py │ ├── middle.py │ ├── pandas.py │ ├── pysnooper.py │ ├── resources │ │ ├── __init__.py │ │ ├── ansible │ │ │ ├── __init__.py │ │ │ ├── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_10 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_11 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_12 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_13 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_14 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_15 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_16 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_17 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_18 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_2 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_3 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_4 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_5 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_6 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_7 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_8 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_9 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ └── requirements.txt │ │ ├── black │ │ │ ├── __init__.py │ │ │ ├── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_10 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_11 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_12 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_13 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_14 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_15 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_16 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_17 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_18 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_19 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_2 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_20 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_21 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_22 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_23 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_3 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_4 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_5 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_6 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_7 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_8 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_9 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ └── requirements.txt │ │ ├── calculator │ │ │ ├── __init__.py │ │ │ └── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── requirements.txt │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ ├── cookiecutter │ │ │ ├── __init__.py │ │ │ ├── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ ├── explanation.md │ │ │ │ └── fix.patch │ │ │ ├── bug_2 │ │ │ │ ├── __init__.py │ │ │ │ ├── explanation.md │ │ │ │ ├── fix.patch │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_3 │ │ │ │ ├── __init__.py │ │ │ │ ├── explanation.md │ │ │ │ ├── fix.patch │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_4 │ │ │ │ ├── __init__.py │ │ │ │ ├── explanation.md │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ └── requirements.txt │ │ ├── expression │ │ │ ├── __init__.py │ │ │ └── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── requirements.txt │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ ├── fastapi │ │ │ ├── __init__.py │ │ │ ├── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ ├── explanation.md │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── requirements.txt │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_10 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_11 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_12 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_13 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_14 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_15 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_16 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_2 │ │ │ │ ├── __init__.py │ │ │ │ ├── explanation.md │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_3 │ │ │ │ ├── __init__.py │ │ │ │ ├── explanation.md │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_4 │ │ │ │ ├── __init__.py │ │ │ │ ├── explanation.md │ │ │ │ ├── fix.patch │ │ │ │ └── systemtests.py │ │ │ ├── bug_5 │ │ │ │ ├── __init__.py │ │ │ │ ├── explanation.md │ │ │ │ ├── fix.patch │ │ │ │ └── systemtests.py │ │ │ ├── bug_6 │ │ │ │ ├── __init__.py │ │ │ │ ├── explanation.md │ │ │ │ ├── fix.patch │ │ │ │ └── systemtests.py │ │ │ ├── bug_7 │ │ │ │ ├── __init__.py │ │ │ │ ├── explanation.md │ │ │ │ ├── fix.patch │ │ │ │ └── systemtests.py │ │ │ ├── bug_8 │ │ │ │ ├── __init__.py │ │ │ │ ├── explanation.md │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── systemtests.py │ │ │ ├── bug_9 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── harness.py │ │ │ └── requirements.txt │ │ ├── httpie │ │ │ ├── __init__.py │ │ │ ├── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_2 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_3 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_4 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_5 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ └── requirements.txt │ │ ├── keras │ │ │ ├── __init__.py │ │ │ ├── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_10 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_11 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_12 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_13 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_14 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_15 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_16 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_17 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_18 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_19 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_2 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_20 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_21 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_22 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_23 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_24 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_25 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_26 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_27 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_28 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_29 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_3 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_30 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_31 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_32 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_33 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_34 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_35 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_36 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_37 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_38 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_39 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_4 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_40 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_41 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_42 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_43 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_44 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_45 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_5 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_6 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_7 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_8 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_9 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ └── requirements.txt │ │ ├── luigi │ │ │ ├── __init__.py │ │ │ ├── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_10 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_11 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_12 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_13 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_14 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_15 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_16 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_17 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_18 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_19 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_2 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_20 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_21 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_22 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_23 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_24 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_25 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_26 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_27 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_28 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_29 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_3 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_30 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_31 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_32 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_33 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_4 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_5 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_6 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_7 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_8 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_9 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ └── requirements.txt │ │ ├── markup │ │ │ ├── __init__.py │ │ │ ├── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_2 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── harness.py │ │ │ └── requirements.txt │ │ ├── matplotlib │ │ │ ├── __init__.py │ │ │ ├── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_10 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_11 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_12 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_13 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_14 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_15 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_16 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_17 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_18 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_19 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_2 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_20 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_21 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_22 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_23 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_24 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_25 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_26 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_27 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_28 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_29 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_3 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_30 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_4 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_5 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_6 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_7 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_8 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_9 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ └── requirements.txt │ │ ├── middle │ │ │ ├── __init__.py │ │ │ ├── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_2 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ └── requirements.txt │ │ ├── pandas │ │ │ ├── __init__.py │ │ │ ├── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ ├── setup.sh │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_10 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_100 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_101 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_102 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_103 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_104 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_105 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_106 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_107 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_108 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_109 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_11 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_110 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_111 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_112 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_113 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_114 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_115 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_116 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_117 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_118 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_119 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_12 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_120 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_121 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_122 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_123 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_124 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_125 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_126 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_127 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_128 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_129 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_13 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_130 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_131 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_132 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_133 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_134 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_135 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_136 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_137 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_138 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_139 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_14 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_140 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_141 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_142 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_143 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_144 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_145 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_146 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_147 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_148 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_149 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_15 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_150 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_151 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_152 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_153 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_154 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_155 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_156 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_157 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_158 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_159 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_16 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_160 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_161 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_162 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_163 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_164 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_165 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_166 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_167 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_168 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_169 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_17 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_18 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_19 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_2 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_20 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_21 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_22 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_23 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_24 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_25 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_26 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_27 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_28 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_29 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_3 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_30 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_31 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_32 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_33 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_34 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_35 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_36 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_37 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_38 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_39 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_4 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_40 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_41 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_42 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_43 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_44 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_45 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_46 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_47 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_48 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_49 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_5 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_50 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_51 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_52 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_53 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_54 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_55 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_56 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_57 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_58 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_59 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_6 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_60 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_61 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_62 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_63 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_64 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_65 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_66 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_67 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_68 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_69 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_7 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_70 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_71 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_72 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_73 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_74 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_75 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_76 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_77 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_78 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_79 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_8 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_80 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_81 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_82 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_83 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_84 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_85 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_86 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_87 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_88 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_89 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_9 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ ├── bug_90 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_91 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_92 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_93 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_94 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_95 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_96 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_97 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_98 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_99 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ └── requirements.txt │ │ ├── pysnooper │ │ │ ├── __init__.py │ │ │ ├── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ ├── explanation.md │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_2 │ │ │ │ ├── __init__.py │ │ │ │ ├── explanation.md │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_3 │ │ │ │ ├── __init__.py │ │ │ │ ├── explanation.md │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ └── harness.py │ │ ├── sanic │ │ │ ├── __init__.py │ │ │ ├── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_2 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_3 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_4 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_5 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── requirements.txt │ │ │ │ └── setup.sh │ │ │ └── requirements.txt │ │ ├── scrapy │ │ │ ├── __init__.py │ │ │ ├── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_10 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_11 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_12 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_13 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_14 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_15 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_16 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_17 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_18 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_19 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_2 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_20 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_21 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_22 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_23 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_24 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_25 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_26 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_27 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_28 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_29 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_3 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_30 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_31 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_32 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_33 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_34 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_35 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_36 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_37 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_38 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_39 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_4 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_40 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_5 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_6 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_7 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_8 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_9 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ └── requirements.txt │ │ ├── spacy │ │ │ ├── __init__.py │ │ │ ├── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_10 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_2 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_3 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_4 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_5 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_6 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_7 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_8 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ ├── bug_9 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── requirements.txt │ │ │ └── requirements.txt │ │ ├── thefuck │ │ │ ├── __init__.py │ │ │ ├── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_10 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_11 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_12 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_13 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_14 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── note.txt │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_15 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_16 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_17 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── note.txt │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_18 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_19 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_2 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── note.txt │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_20 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_21 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_22 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_23 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_24 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_25 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_26 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_27 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_28 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_29 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_3 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── note.txt │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_30 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_31 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_32 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_4 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── note.txt │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_5 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── note.txt │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_6 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_7 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_8 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── note.txt │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ ├── bug_9 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ ├── harness.py │ │ │ │ ├── systemtests.py │ │ │ │ └── unittests.py │ │ │ └── requirements.txt │ │ ├── tornado │ │ │ ├── __init__.py │ │ │ ├── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_10 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_11 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_12 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_13 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_14 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_15 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_16 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_2 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_3 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_4 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_5 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_6 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_7 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_8 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ ├── bug_9 │ │ │ │ ├── __init__.py │ │ │ │ └── fix.patch │ │ │ └── requirements.txt │ │ ├── tqdm │ │ │ ├── __init__.py │ │ │ ├── bug_1 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_2 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_3 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_4 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_5 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_6 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_7 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_8 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ ├── bug_9 │ │ │ │ ├── __init__.py │ │ │ │ ├── fix.patch │ │ │ │ └── setup.sh │ │ │ └── requirements.txt │ │ └── youtubedl │ │ │ ├── __init__.py │ │ │ ├── bug_1 │ │ │ ├── __init__.py │ │ │ ├── fix.patch │ │ │ ├── harness.py │ │ │ └── systemtests.py │ │ │ ├── bug_10 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_11 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_12 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_13 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_14 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_15 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_16 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_17 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_18 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_19 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_2 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_20 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_21 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_22 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_23 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_24 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_25 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_26 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_27 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_28 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_29 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_3 │ │ │ ├── __init__.py │ │ │ ├── fix.patch │ │ │ ├── harness.py │ │ │ └── systemtests.py │ │ │ ├── bug_30 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_31 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_32 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_33 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_34 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_35 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_36 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_37 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_38 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_39 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_4 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_40 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_41 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_42 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_43 │ │ │ ├── __init__.py │ │ │ ├── fix.patch │ │ │ ├── harness.py │ │ │ └── systemtests.py │ │ │ ├── bug_5 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_6 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_7 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_8 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ ├── bug_9 │ │ │ ├── __init__.py │ │ │ └── fix.patch │ │ │ └── requirements.txt │ ├── sanic.py │ ├── scrapy.py │ ├── spacy.py │ ├── thefuck.py │ ├── tornado.py │ ├── tqdm.py │ └── youtubedl.py │ ├── sfl │ ├── __init__.py │ ├── constants.py │ └── utils.py │ └── tests │ ├── __init__.py │ ├── diversity.py │ ├── generator.py │ └── utils.py ├── tests ├── test_api.py ├── test_commands.py ├── test_generation.py ├── test_grammar.py ├── test_projects.py ├── test_sfl.py └── utils.py ├── verify.py └── verify_param.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [report] 2 | exclude_lines = 3 | pragma: no cover 4 | raise NotImplementedError() 5 | if 0: 6 | if __name__ == .__main__.: 7 | @(abc\.)?abstractmethod -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tabulate>=0.9.0 2 | sflkit>=0.2.22 3 | sflkitlib>=0.0.5 4 | unidiff>=0.7.5 5 | psutil>=5.9.5 -------------------------------------------------------------------------------- /src/tests4py/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ["api", "cli", "grammars", "projects", "sfl", "tests"] 2 | -------------------------------------------------------------------------------- /src/tests4py/grammars/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/grammars/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/ansible/bug_1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/ansible/bug_1/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/ansible/bug_10/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/ansible/bug_10/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/ansible/bug_11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/ansible/bug_11/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/ansible/bug_12/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/ansible/bug_12/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/ansible/bug_13/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/ansible/bug_13/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/ansible/bug_14/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/ansible/bug_14/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/ansible/bug_15/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/ansible/bug_15/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/ansible/bug_16/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/ansible/bug_16/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/ansible/bug_17/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/ansible/bug_17/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/ansible/bug_18/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/ansible/bug_18/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/ansible/bug_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/ansible/bug_2/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/ansible/bug_3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/ansible/bug_3/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/ansible/bug_4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/ansible/bug_4/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/ansible/bug_5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/ansible/bug_5/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/ansible/bug_6/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/ansible/bug_6/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/ansible/bug_7/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/ansible/bug_7/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/ansible/bug_8/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/ansible/bug_8/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/ansible/bug_9/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/ansible/bug_9/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_1/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_10/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_10/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_11/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_12/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_12/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_13/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_13/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_14/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_14/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_15/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_15/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_16/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_16/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_17/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_17/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_18/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_18/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_19/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_19/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_2/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_20/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_20/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_21/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_21/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_22/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_22/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_23/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_23/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_3/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_4/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_5/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_6/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_6/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_7/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_7/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_8/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_8/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/black/bug_9/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/black/bug_9/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/calculator/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.calculator import bug_1 2 | 3 | __all__ = [ 4 | "bug_1", 5 | ] 6 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/calculator/bug_1/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.calculator.bug_1 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/cookiecutter/bug_1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/cookiecutter/bug_1/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/cookiecutter/bug_1/explanation.md: -------------------------------------------------------------------------------- 1 | The bug in cookiecutter 1 is not reproducible because all tests pass on the buggy version. -------------------------------------------------------------------------------- /src/tests4py/projects/resources/cookiecutter/bug_2/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.cookiecutter.bug_2 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/cookiecutter/bug_3/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.cookiecutter.bug_3 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/cookiecutter/bug_4/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.cookiecutter.bug_4 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/expression/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.expression import bug_1 2 | 3 | __all__ = [ 4 | "bug_1", 5 | ] 6 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/expression/bug_1/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.expression.bug_1 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/fastapi/bug_1/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.fastapi.bug_1 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/fastapi/bug_10/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/fastapi/bug_10/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/fastapi/bug_11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/fastapi/bug_11/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/fastapi/bug_12/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/fastapi/bug_12/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/fastapi/bug_13/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/fastapi/bug_13/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/fastapi/bug_14/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/fastapi/bug_14/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/fastapi/bug_15/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/fastapi/bug_15/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/fastapi/bug_16/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/fastapi/bug_16/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/fastapi/bug_2/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.fastapi.bug_2 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/fastapi/bug_3/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.fastapi.bug_3 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/fastapi/bug_4/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.fastapi.bug_4 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/fastapi/bug_5/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.fastapi.bug_5 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/fastapi/bug_6/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.fastapi.bug_6 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/fastapi/bug_7/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.fastapi.bug_7 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/fastapi/bug_8/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.fastapi.bug_8 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/fastapi/bug_9/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/fastapi/bug_9/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/httpie/bug_1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/httpie/bug_1/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/httpie/bug_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/httpie/bug_2/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/httpie/bug_3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/httpie/bug_3/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/httpie/bug_4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/httpie/bug_4/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/httpie/bug_5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/httpie/bug_5/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_1/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_10/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_10/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_11/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_12/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_12/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_12/fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_12/fix.patch -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_13/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_13/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_14/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_14/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_15/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_15/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_16/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_16/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_17/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_17/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_18/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_18/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_19/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_19/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_2/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_20/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_20/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_21/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_21/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_22/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_22/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_23/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_23/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_24/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_24/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_25/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_25/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_26/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_26/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_27/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_27/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_28/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_28/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_29/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_29/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_3/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_30/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_30/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_31/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_31/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_32/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_32/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_33/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_33/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_34/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_34/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_35/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_35/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_36/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_36/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_37/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_37/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_38/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_38/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_39/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_39/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_4/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_40/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_40/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_41/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_41/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_42/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_42/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_43/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_43/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_44/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_44/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_45/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_45/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_5/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_6/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_6/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_7/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_7/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_8/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_8/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/keras/bug_9/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/keras/bug_9/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_1/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_10/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_10/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_11/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_12/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_12/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_13/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_13/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_14/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_14/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_15/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_15/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_16/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_16/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_17/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_17/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_18/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_18/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_19/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_19/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_2/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_20/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_20/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_21/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_21/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_22/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_22/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_23/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_23/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_24/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_24/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_25/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_25/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_26/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_26/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_27/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_27/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_28/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_28/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_29/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_29/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_3/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_30/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_30/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_31/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_31/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_32/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_32/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_33/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_33/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_4/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_5/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_6/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_6/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_7/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_7/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_8/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_8/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/bug_9/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/luigi/bug_9/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/luigi/requirements.txt: -------------------------------------------------------------------------------- 1 | mock==4.0.2 2 | moto==1.3.14 3 | nose==1.3.7 4 | psutil==5.7.0 5 | snakebite==2.11.0 6 | SQLAlchemy==1.3.13 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/markup/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.markup import bug_1, bug_2 2 | 3 | __all__ = [ 4 | "bug_1", 5 | "bug_2", 6 | ] 7 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/markup/bug_1/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.markup.bug_1 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/markup/bug_1/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/markup/bug_1/requirements.txt -------------------------------------------------------------------------------- /src/tests4py/projects/resources/markup/bug_2/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.markup.bug_2 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/markup/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/markup/requirements.txt -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_1/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_10/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_10/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_11/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_12/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_12/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_13/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_13/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_14/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_14/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_15/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_15/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_16/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_16/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_17/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_17/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_18/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_18/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_19/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_19/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_2/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_20/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_20/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_21/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_21/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_22/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_22/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_23/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_23/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_24/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_24/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_25/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_25/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_26/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_26/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_27/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_27/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_28/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_28/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_29/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_29/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_3/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_30/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_30/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_4/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_5/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_6/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_6/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_7/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_7/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_8/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_8/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/matplotlib/bug_9/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/matplotlib/bug_9/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/middle/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.middle import bug_1, bug_2 2 | 3 | __all__ = [ 4 | "bug_1", 5 | "bug_2", 6 | ] 7 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/middle/bug_1/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.middle.bug_1 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/middle/bug_2/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.middle.bug_2 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/middle/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/middle/requirements.txt -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_1/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.pandas.bug_1 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_1/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py build_ext --inplace --force -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_10/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_10/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_10/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_100/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_100/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_100/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_101/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_101/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_101/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_102/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_102/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_102/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_103/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_103/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_103/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_104/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_104/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_104/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_105/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_105/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_105/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_106/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_106/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_106/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_107/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_107/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_107/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_108/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_108/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_108/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_109/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_109/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_109/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_11/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_11/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_110/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_110/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_110/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_111/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_111/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_111/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_112/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_112/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_112/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_113/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_113/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_113/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_114/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_114/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_114/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_115/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_115/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_115/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_116/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_116/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_116/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_117/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_117/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_117/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_118/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_118/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_118/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_119/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_119/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_119/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_12/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_12/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_12/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_120/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_120/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_120/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_121/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_121/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_121/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_122/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_122/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_122/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_123/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_123/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_123/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_124/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_124/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_124/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_125/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_125/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_125/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_126/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_126/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_126/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_127/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_127/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_127/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_128/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_128/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_128/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_129/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_129/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_129/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_13/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_13/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_13/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_130/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_130/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_130/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_131/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_131/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_131/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_132/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_132/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_132/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_133/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_133/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_133/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_134/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_134/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_134/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_135/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_135/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_135/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_136/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_136/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_136/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_137/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_137/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_137/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_138/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_138/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_138/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_139/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_139/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_139/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_14/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_14/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_14/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_140/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_140/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_140/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_141/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_141/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_141/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_142/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_142/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_142/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_143/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_143/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_143/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_144/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_144/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_144/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_145/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_145/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_145/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_146/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_146/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_146/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_147/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_147/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_147/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_148/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_148/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_148/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_149/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_149/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_149/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_15/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_15/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_15/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_150/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_150/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_150/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_151/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_151/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_151/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_152/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_152/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_152/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_153/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_153/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_153/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_154/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_154/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_154/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_155/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_155/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_155/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_156/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_156/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_156/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_157/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_157/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_157/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_158/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_158/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_158/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_159/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_159/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_159/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_16/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_16/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_16/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_160/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_160/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_160/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_161/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_161/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_161/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_162/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_162/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_162/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_163/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_163/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_163/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_164/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_164/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_164/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_165/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_165/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_165/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_166/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_166/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_166/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_167/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_167/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_167/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_168/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_168/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_168/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_169/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_169/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_169/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_17/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_17/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_17/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_18/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_18/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_18/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_19/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_19/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_19/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_2/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_2/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py build_ext --inplace --force -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_20/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_20/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_20/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_21/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_21/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_21/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_22/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_22/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_22/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace --force 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_23/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_23/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_23/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_24/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_24/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_24/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_25/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_25/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_25/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_26/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_26/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_26/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_27/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_27/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_27/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_28/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_28/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_28/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_29/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_29/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_29/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_3/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_3/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py build_ext --inplace --force -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_30/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_30/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_30/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_31/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_31/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_31/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_32/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_32/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_32/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_33/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_33/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_33/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_34/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_34/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_34/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_35/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_35/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_35/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_36/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_36/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_36/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_37/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_37/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_37/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_38/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_38/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_38/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_39/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_39/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_39/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_4/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_4/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py build_ext --inplace --force -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_40/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_40/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_40/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_41/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_41/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_41/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_42/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_42/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_42/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_43/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_43/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_43/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_44/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_44/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_44/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_45/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_45/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_45/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_46/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_46/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_46/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_47/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_47/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_47/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_48/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_48/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_48/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_49/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_49/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_49/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_5/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_5/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py build_ext --inplace --force -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_50/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_50/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_50/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_51/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_51/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_51/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_52/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_52/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_52/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_53/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_53/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_53/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_54/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_54/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_54/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_55/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_55/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_55/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_56/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_56/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_56/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_57/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_57/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_57/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_58/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_58/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_58/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_59/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_59/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_59/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_6/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_6/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_6/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py build_ext --inplace --force -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_60/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_60/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_60/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_61/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_61/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_61/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_62/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_62/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_62/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_63/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_63/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_63/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_64/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_64/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_64/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_65/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_65/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_65/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_66/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_66/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_66/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_67/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_67/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_67/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_68/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_68/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_68/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_69/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_69/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_69/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_7/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_7/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_7/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_70/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_70/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_70/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_71/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_71/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_71/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_72/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_72/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_72/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_73/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_73/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_73/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_74/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_74/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_74/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_75/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_75/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_75/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_76/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_76/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_76/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_77/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_77/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_77/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_78/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_78/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_78/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_79/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_79/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_79/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_8/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_8/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_8/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_80/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_80/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_80/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_81/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_81/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_81/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_82/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_82/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_82/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_83/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_83/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_83/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_84/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_84/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_84/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_85/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_85/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_85/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_86/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_86/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_86/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_87/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_87/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_87/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_88/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_88/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_88/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_89/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_89/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_89/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_9/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_9/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_9/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_90/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_90/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_90/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_91/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_91/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_91/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_92/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_92/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_92/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_93/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_93/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_93/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_94/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_94/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_94/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_95/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_95/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_95/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_96/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_96/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_96/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_97/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_97/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_97/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_98/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_98/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_98/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_99/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pandas/bug_99/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pandas/bug_99/setup.sh: -------------------------------------------------------------------------------- 1 | pip install cython 2 | pip install numpy 3 | python setup.py build_ext --inplace -j 0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pysnooper/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.pysnooper import bug_1, bug_2, bug_3 2 | 3 | __all__ = [ 4 | "bug_1", 5 | "bug_2", 6 | "bug_3", 7 | ] 8 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pysnooper/bug_1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/pysnooper/bug_1/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pysnooper/bug_1/explanation.md: -------------------------------------------------------------------------------- 1 | The bug in PySnooper 1 is not reproducible because all tests pass on the buggy version. -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pysnooper/bug_1/requirements.txt: -------------------------------------------------------------------------------- 1 | python_toolbox==1.0.11 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pysnooper/bug_2/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.pysnooper.bug_2 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pysnooper/bug_2/requirements.txt: -------------------------------------------------------------------------------- 1 | python_toolbox==1.0.11 2 | six==1.16.0 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pysnooper/bug_3/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.pysnooper.bug_3 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/pysnooper/bug_3/requirements.txt: -------------------------------------------------------------------------------- 1 | python_toolbox==1.0.11 2 | decorator==5.1.1 -------------------------------------------------------------------------------- /src/tests4py/projects/resources/sanic/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.sanic import bug_1, bug_2, bug_3, bug_4, bug_5 2 | 3 | __all__ = [bug_1, bug_2, bug_3, bug_4, bug_5] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/sanic/bug_1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/sanic/bug_1/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/sanic/bug_1/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py build 2 | python setup.py install 3 | pip3 install -e .[dev] 4 | pip3 install -e . 5 | pip3 install -e .[test] -------------------------------------------------------------------------------- /src/tests4py/projects/resources/sanic/bug_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/sanic/bug_2/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/sanic/bug_2/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py build 2 | python setup.py install 3 | pip3 install -e .[dev] 4 | pip3 install -e . 5 | pip3 install -e .[test] -------------------------------------------------------------------------------- /src/tests4py/projects/resources/sanic/bug_3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/sanic/bug_3/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/sanic/bug_3/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py build 2 | python setup.py install 3 | pip3 install -e .[dev] 4 | pip3 install -e . 5 | pip3 install -e .[test] -------------------------------------------------------------------------------- /src/tests4py/projects/resources/sanic/bug_4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/sanic/bug_4/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/sanic/bug_4/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py build 2 | python setup.py install 3 | pip3 install -e .[dev] 4 | pip3 install -e . 5 | pip3 install -e .[test] -------------------------------------------------------------------------------- /src/tests4py/projects/resources/sanic/bug_5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/sanic/bug_5/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/sanic/bug_5/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py build 2 | python setup.py install 3 | pip3 install -e .[dev] 4 | pip3 install -e . 5 | pip3 install -e .[test] -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_1/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_10/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_10/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_11/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_12/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_12/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_13/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_13/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_14/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_14/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_15/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_15/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_16/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_16/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_17/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_17/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_18/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_18/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_19/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_19/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_2/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_20/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_20/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_21/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_21/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_22/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_22/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_23/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_23/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_24/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_24/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_25/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_25/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_26/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_26/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_27/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_27/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_28/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_28/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_29/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_29/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_3/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_30/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_30/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_31/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_31/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_32/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_32/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_33/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_33/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_34/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_34/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_35/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_35/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_36/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_36/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_37/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_37/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_38/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_38/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_39/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_39/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_4/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_40/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_40/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_5/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_6/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_6/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_7/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_7/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_8/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_8/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/scrapy/bug_9/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/scrapy/bug_9/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/spacy/bug_1/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.spacy.bug_1 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/spacy/bug_10/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/spacy/bug_10/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/spacy/bug_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/spacy/bug_2/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/spacy/bug_3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/spacy/bug_3/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/spacy/bug_4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/spacy/bug_4/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/spacy/bug_5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/spacy/bug_5/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/spacy/bug_6/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/spacy/bug_6/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/spacy/bug_7/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/spacy/bug_7/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/spacy/bug_8/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/spacy/bug_8/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/spacy/bug_9/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/spacy/bug_9/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_1/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_1 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_10/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_10 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_11/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_11 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_12/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_12 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_13/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_13 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_14/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_14 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_15/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_15 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_16/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_16 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_17/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_17 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_18/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_18 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_19/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_19 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_2/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_2 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_20/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_20 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_21/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_21 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_22/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_22 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_23/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_23 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_24/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_24 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_25/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_25 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_26/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_26 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_27/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_27 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_28/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_28 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_29/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_29 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_3/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_3 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_30/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_30 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_31/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_31 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_32/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_32 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_4/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_4 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_5/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_5 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_6/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_6 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_7/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_7 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_8/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_8 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/thefuck/bug_9/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.thefuck.bug_9 import systemtests 2 | 3 | __all__ = ["systemtests"] 4 | -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tornado/bug_1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tornado/bug_1/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tornado/bug_10/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tornado/bug_10/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tornado/bug_11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tornado/bug_11/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tornado/bug_12/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tornado/bug_12/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tornado/bug_13/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tornado/bug_13/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tornado/bug_14/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tornado/bug_14/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tornado/bug_15/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tornado/bug_15/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tornado/bug_16/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tornado/bug_16/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tornado/bug_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tornado/bug_2/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tornado/bug_3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tornado/bug_3/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tornado/bug_4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tornado/bug_4/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tornado/bug_5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tornado/bug_5/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tornado/bug_6/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tornado/bug_6/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tornado/bug_7/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tornado/bug_7/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tornado/bug_8/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tornado/bug_8/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tornado/bug_9/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tornado/bug_9/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tqdm/bug_1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tqdm/bug_1/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tqdm/bug_1/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py install 2 | pip3 install nose 3 | pip3 install flake8 4 | pip3 install coverage 5 | pip3 install pytest -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tqdm/bug_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tqdm/bug_2/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tqdm/bug_2/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py install 2 | pip3 install nose 3 | pip3 install flake8 4 | pip3 install coverage 5 | pip3 install pytest -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tqdm/bug_3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tqdm/bug_3/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tqdm/bug_3/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py install 2 | pip3 install nose 3 | pip3 install flake8 4 | pip3 install coverage 5 | pip3 install pytest -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tqdm/bug_4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tqdm/bug_4/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tqdm/bug_4/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py install 2 | pip3 install nose 3 | pip3 install flake8 4 | pip3 install coverage 5 | pip3 install pytest -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tqdm/bug_5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tqdm/bug_5/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tqdm/bug_5/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py install 2 | pip3 install nose 3 | pip3 install flake8 4 | pip3 install coverage 5 | pip3 install pytest -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tqdm/bug_6/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tqdm/bug_6/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tqdm/bug_6/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py install 2 | pip3 install nose 3 | pip3 install flake8 4 | pip3 install coverage 5 | pip3 install pytest -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tqdm/bug_7/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tqdm/bug_7/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tqdm/bug_7/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py install 2 | pip3 install nose 3 | pip3 install flake8 4 | pip3 install coverage 5 | pip3 install pytest -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tqdm/bug_8/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tqdm/bug_8/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tqdm/bug_8/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py install 2 | pip3 install nose 3 | pip3 install flake8 4 | pip3 install coverage 5 | pip3 install pytest -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tqdm/bug_9/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/tqdm/bug_9/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/tqdm/bug_9/setup.sh: -------------------------------------------------------------------------------- 1 | python setup.py install 2 | pip3 install nose 3 | pip3 install flake8 4 | pip3 install coverage 5 | pip3 install pytest -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_1/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.youtubedl.bug_1 import systemtests 2 | 3 | __all__ = ["systemtests"] -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_10/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_10/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_11/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_12/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_12/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_13/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_13/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_14/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_14/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_15/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_15/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_16/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_16/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_17/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_17/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_18/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_18/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_19/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_19/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_2/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_20/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_20/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_21/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_21/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_22/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_22/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_23/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_23/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_24/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_24/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_25/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_25/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_26/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_26/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_27/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_27/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_28/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_28/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_29/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_29/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_3/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.youtubedl.bug_3 import systemtests 2 | 3 | __all__ = ["systemtests"] -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_30/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_30/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_4/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_43/__init__.py: -------------------------------------------------------------------------------- 1 | from tests4py.projects.resources.youtubedl.bug_43 import systemtests 2 | 3 | __all__ = ["systemtests"] -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_5/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_5/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_6/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_6/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_7/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_7/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_8/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_8/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/bug_9/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/bug_9/__init__.py -------------------------------------------------------------------------------- /src/tests4py/projects/resources/youtubedl/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smythi93/Tests4Py/0ce69815f1a8c224758d575181e72030d3309630/src/tests4py/projects/resources/youtubedl/requirements.txt -------------------------------------------------------------------------------- /src/tests4py/tests/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ["diversity", "generator", "utils"] 2 | --------------------------------------------------------------------------------