gitextract_cgcyv2vr/ ├── .coveragerc ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── codetransformer/ │ ├── __init__.py │ ├── _version.py │ ├── code.py │ ├── core.py │ ├── decompiler/ │ │ ├── _343.py │ │ └── __init__.py │ ├── instructions.py │ ├── patterns.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── test_code.py │ │ ├── test_core.py │ │ ├── test_decompiler.py │ │ └── test_instructions.py │ ├── transformers/ │ │ ├── __init__.py │ │ ├── add2mul.py │ │ ├── constants.py │ │ ├── interpolated_strings.py │ │ ├── literals.py │ │ ├── pattern_matched_exceptions.py │ │ ├── precomputed_slices.py │ │ └── tests/ │ │ ├── __init__.py │ │ ├── test_add2mul.py │ │ ├── test_constants.py │ │ ├── test_exc_patterns.py │ │ ├── test_interpolated_strings.py │ │ ├── test_literals.py │ │ └── test_precomputed_slices.py │ └── utils/ │ ├── __init__.py │ ├── functional.py │ ├── immutable.py │ ├── instance.py │ ├── no_default.py │ ├── pretty.py │ └── tests/ │ ├── __init__.py │ ├── test_immutable.py │ └── test_pretty.py ├── docs/ │ ├── .dir-locals.el │ ├── Makefile │ └── source/ │ ├── appendix.rst │ ├── code-objects.rst │ ├── conf.py │ ├── index.rst │ ├── magics.rst │ └── patterns.rst ├── requirements_doc.txt ├── setup.cfg ├── setup.py ├── tox.ini └── versioneer.py