gitextract_cunrvl15/ ├── .gitignore ├── .travis.yml ├── Dockerfile ├── README.md ├── py_backwards/ │ ├── __init__.py │ ├── compiler.py │ ├── conf.py │ ├── const.py │ ├── exceptions.py │ ├── files.py │ ├── main.py │ ├── messages.py │ ├── transformers/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── class_without_bases.py │ │ ├── dict_unpacking.py │ │ ├── formatted_values.py │ │ ├── functions_annotations.py │ │ ├── import_dbm.py │ │ ├── import_pathlib.py │ │ ├── metaclass.py │ │ ├── python2_future.py │ │ ├── return_from_generator.py │ │ ├── six_moves.py │ │ ├── starred_unpacking.py │ │ ├── string_types.py │ │ ├── super_without_arguments.py │ │ ├── variables_annotations.py │ │ └── yield_from.py │ ├── types.py │ └── utils/ │ ├── __init__.py │ ├── helpers.py │ ├── snippet.py │ └── tree.py ├── requirements.txt ├── setup.py └── tests/ ├── __init__.py ├── conftest.py ├── functional/ │ ├── __init__.py │ ├── input.py │ └── test_compiled_code.py ├── test_compiler.py ├── test_files.py ├── transformers/ │ ├── __init__.py │ ├── conftest.py │ ├── test_class_without_bases.py │ ├── test_dict_unpacking.py │ ├── test_formatted_values.py │ ├── test_functions_annotations.py │ ├── test_import_dbm.py │ ├── test_import_pathlib.py │ ├── test_metaclass.py │ ├── test_python2_future.py │ ├── test_return_from_generator.py │ ├── test_six_moves.py │ ├── test_starred_unpacking.py │ ├── test_string_types.py │ ├── test_super_without_arguments.py │ ├── test_variables_annotations.py │ └── test_yield_from.py └── utils/ ├── __init__.py ├── test_helpers.py ├── test_snippet.py └── test_tree.py