gitextract_8ck6zqut/ ├── .devcontainer/ │ ├── devcontainer.json │ └── on-create-command.sh ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.md │ │ ├── config.yml │ │ └── feature-request.md │ ├── pull_request_template.md │ └── workflows/ │ ├── lock.yaml │ ├── pre-commit.yaml │ ├── publish.yaml │ └── tests.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGES.rst ├── LICENSE.txt ├── README.md ├── docs/ │ ├── Makefile │ ├── api.rst │ ├── changes.rst │ ├── conf.py │ ├── examples/ │ │ ├── cache_extension.py │ │ └── inline_gettext_extension.py │ ├── extensions.rst │ ├── faq.rst │ ├── index.rst │ ├── integration.rst │ ├── intro.rst │ ├── license.rst │ ├── make.bat │ ├── nativetypes.rst │ ├── sandbox.rst │ ├── switching.rst │ ├── templates.rst │ └── tricks.rst ├── examples/ │ └── basic/ │ ├── cycle.py │ ├── debugger.py │ ├── inheritance.py │ ├── templates/ │ │ ├── broken.html │ │ └── subbroken.html │ ├── test.py │ ├── test_filter_and_linestatements.py │ ├── test_loop_filter.py │ └── translate.py ├── pyproject.toml ├── scripts/ │ └── generate_identifier_pattern.py ├── src/ │ └── jinja2/ │ ├── __init__.py │ ├── _identifier.py │ ├── async_utils.py │ ├── bccache.py │ ├── compiler.py │ ├── constants.py │ ├── debug.py │ ├── defaults.py │ ├── environment.py │ ├── exceptions.py │ ├── ext.py │ ├── filters.py │ ├── idtracking.py │ ├── lexer.py │ ├── loaders.py │ ├── meta.py │ ├── nativetypes.py │ ├── nodes.py │ ├── optimizer.py │ ├── parser.py │ ├── py.typed │ ├── runtime.py │ ├── sandbox.py │ ├── tests.py │ ├── utils.py │ └── visitor.py └── tests/ ├── conftest.py ├── res/ │ ├── __init__.py │ ├── templates/ │ │ ├── broken.html │ │ ├── foo/ │ │ │ └── test.html │ │ ├── mojibake.txt │ │ ├── syntaxerror.html │ │ └── test.html │ └── templates2/ │ └── foo ├── test_api.py ├── test_async.py ├── test_async_filters.py ├── test_bytecode_cache.py ├── test_compile.py ├── test_core_tags.py ├── test_debug.py ├── test_ext.py ├── test_filters.py ├── test_idtracking.py ├── test_imports.py ├── test_inheritance.py ├── test_lexnparse.py ├── test_loader.py ├── test_nativetypes.py ├── test_nodes.py ├── test_pickle.py ├── test_regression.py ├── test_runtime.py ├── test_security.py ├── test_tests.py └── test_utils.py