gitextract_s87k40ee/ ├── .github/ │ └── workflows/ │ ├── codespell.yml │ └── test.yml ├── .gitignore ├── .readthedocs.yaml ├── Changes.rst ├── Include/ │ ├── fuse_common.pxd │ ├── fuse_lowlevel.pxd │ ├── fuse_opt.pxd │ └── libc_extra.pxd ├── LICENSE ├── MANIFEST.in ├── README.rst ├── developer-notes/ │ ├── FUSEError Performance.html │ ├── FUSEError Performance.ipynb │ ├── Namedtuple.html │ ├── Namedtuple.ipynb │ ├── lookup_counts.rst │ ├── release_process.rst │ ├── setup.md │ └── valgrind.md ├── doc/ │ └── .placeholder ├── examples/ │ ├── hello.py │ ├── hello_asyncio.py │ ├── passthroughfs.py │ └── tmpfs.py ├── pyproject.toml ├── rst/ │ ├── _static/ │ │ └── .placeholder │ ├── _templates/ │ │ └── localtoc.html │ ├── about.rst │ ├── asyncio.rst │ ├── changes.rst │ ├── conf.py │ ├── data.rst │ ├── example.rst │ ├── fuse_api.rst │ ├── general.rst │ ├── gotchas.rst │ ├── index.rst │ ├── install.rst │ ├── operations.rst │ └── util.rst ├── src/ │ └── pyfuse3/ │ ├── __init__.pyi │ ├── __init__.pyx │ ├── _pyfuse3.py │ ├── asyncio.py │ ├── darwin_compat.c │ ├── darwin_compat.h │ ├── gettime.h │ ├── handlers.pxi │ ├── internal.pxi │ ├── macros.c │ ├── macros.pxd │ ├── py.typed │ ├── pyfuse3.h │ └── xattr.h ├── test/ │ ├── conftest.py │ ├── pytest.ini │ ├── pytest_checklogs.py │ ├── test_api.py │ ├── test_examples.py │ ├── test_fs.py │ ├── test_rounding.py │ └── util.py └── util/ ├── build_backend.py ├── sdist-sign └── upload-pypi