Skip to content

Commit 0161da9

Browse files
authored
[skip ci] .gitignore: exclude __pycache__ directories (#5838)
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
1 parent 81ffb1d commit 0161da9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ MANIFEST
2626
/.ninja_*
2727
/*.ninja
2828
/docs/.build
29+
__pycache__/
2930
*.py[co]
3031
*.egg-info
3132
*~

0 commit comments

Comments
 (0)