Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Remove unnecessary gitignores
* `.pyc` files can now only occur inside `__pycache__` directories,
  wich are already ignored separately.

* `.pyo` files were obsoleted in Python 3.5 (PEP 488).

* `.pyd` files should never legitimately occur in the pip source tree,
  as it is a pure Python project.
  • Loading branch information
SpecLad committed Jul 12, 2025
commit e5ea82bbcb2b7531ae7a1a801c9ecfcc753db6c2
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Byte-compiled / optimized / DLL files
# Byte-compiled files
__pycache__/
*.py[cod]
*$py.class

# Distribution / packaging
Expand Down
Empty file.