Skip to content
This repository was archived by the owner on Apr 30, 2021. It is now read-only.

Commit 6e469da

Browse files
committed
Update .gitignore to ignore pyc files; describe what they're for.
The addition of Python 2 means that we need to ignore the compiled files that Python 2 creates which are not in the __pycache__ directory. This is added to the .gitignore file to make things consistent. To make the rest of the file clearer, the sections have been annotated to show why they're being ignored. A timeout-* rule has also been added, as this can happen when there are hangs triggered by the fuzzer. The .idea exclusion has been removed as it's not generated by nor anything to do with the product. Users who have use editors or tools which create files should use the global configuration of their local system, rather than include them in the project-specific .gitignore files.
1 parent 1fa3e74 commit 6e469da

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1-
.idea
1+
# Files created by tests
22
venv
3+
*.pyc
34
__pycache__
5+
6+
# Files created by general usage
47
crash-*
8+
timeout-*
9+
10+
# Distribution files
511
dist/
612
build/
713
pythonfuzz.egg-info/

0 commit comments

Comments
 (0)