Ver código fonte

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.
pull/3337/head
Elijah Shaw-Rutschman 4 anos atrás
pai
commit
589831e1dc
Nenhuma conta vinculada ao e-mail do autor do commit
1 arquivos alterados com 3 adições e 0 exclusões
  1. 3
    0
      Python.gitignore

+ 3
- 0
Python.gitignore Ver arquivo

@@ -133,3 +133,6 @@ dmypy.json

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

Carregando…
Cancelar
Salvar