mirror of
https://github.com/pybind/pybind11.git
synced 2026-03-14 20:27:47 +00:00
Python may leave behind temporary `.pyc.*` files inside `__pycache__` on some filesystems (e.g. WSL2 mounts). Adding `__pycache__/` ensures these directories and any leftover files are consistently ignored. Background: Python writes bytecode to a temp file with an extra suffix before renaming it to `.pyc`. If the process is interrupted or the filesystem rename isn’t fully atomic, those temp files may remain. See: https://docs.python.org/3/library/py_compile.html#py_compile.compile
55 lines
584 B
Plaintext
55 lines
584 B
Plaintext
CMakeCache.txt
|
|
CMakeFiles
|
|
Makefile
|
|
cmake_install.cmake
|
|
cmake_uninstall.cmake
|
|
.DS_Store
|
|
*.so
|
|
*.pyd
|
|
*.dll
|
|
*.sln
|
|
*.sdf
|
|
*.opensdf
|
|
*.vcxproj
|
|
*.vcxproj.user
|
|
*.filters
|
|
example.dir
|
|
Win32
|
|
x64
|
|
Release
|
|
Debug
|
|
.vs
|
|
CTestTestfile.cmake
|
|
Testing
|
|
autogen
|
|
MANIFEST
|
|
/.ninja_*
|
|
/*.ninja
|
|
/docs/.build
|
|
__pycache__/
|
|
*.py[co]
|
|
*.egg-info
|
|
*~
|
|
.*.swp
|
|
.DS_Store
|
|
/dist
|
|
/*build*
|
|
.cache/
|
|
sosize-*.txt
|
|
pybind11Config*.cmake
|
|
pybind11Targets.cmake
|
|
/*env*
|
|
/.vscode
|
|
/pybind11/include/*
|
|
/pybind11/share/*
|
|
/docs/_build/*
|
|
.ipynb_checkpoints/
|
|
tests/main.cpp
|
|
CMakeUserPresents.json
|
|
|
|
/Python
|
|
/tmp*
|
|
.ruby-version
|
|
.*cache*/
|
|
*.lock
|