From 589831e1dc8822c2cb0cd33e72b929dfa005ef01 Mon Sep 17 00:00:00 2001 From: Elijah Shaw-Rutschman Date: Wed, 11 Mar 2020 07:59:33 -0500 Subject: [PATCH] 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. --- Python.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index 762cc89f..ba44af1c 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -133,3 +133,6 @@ dmypy.json # pytype static type analyzer .pytype/ + +# Cython debug symbols +cython_debug/