mirror of
https://github.com/github/gitignore
synced 2025-07-04 20:38:31 +02:00
Ignore Cython debug symbols (#3330)
Cython extension modules built with `gdb_debug=True` spit out debug symbols in the `cython_debug` directory at the top level of the project. The files in this directory contain hardcoded paths and are not shareable/meaningful across environments, so I think it makes sense to include them in a default Python .gitignore.
This commit is contained in:
parent
823e38ff68
commit
589831e1dc
1 changed files with 3 additions and 0 deletions
|
@ -133,3 +133,6 @@ dmypy.json
|
|||
|
||||
# pytype static type analyzer
|
||||
.pytype/
|
||||
|
||||
# Cython debug symbols
|
||||
cython_debug/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue