diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-05-19 22:14:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-19 22:14:57 (GMT) |
commit | ed48866c55b8e4ee14faa8b5ad97819e8e74c98b (patch) | |
tree | 94bd31c68f05ee28624c38c2264918e89e4ca30f /Modules | |
parent | d673810b9d9df6fbd29f5b7db3973d5adae10fd3 (diff) | |
download | cpython-ed48866c55b8e4ee14faa8b5ad97819e8e74c98b.zip cpython-ed48866c55b8e4ee14faa8b5ad97819e8e74c98b.tar.gz cpython-ed48866c55b8e4ee14faa8b5ad97819e8e74c98b.tar.bz2 |
bpo-35134: Split traceback.h header (GH-13430)
Add new Include/cpython/traceback.h and Include/internal/traceback.h
header files.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_tracemalloc.c | 1 | ||||
-rw-r--r-- | Modules/faulthandler.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Modules/_tracemalloc.c b/Modules/_tracemalloc.c index c5d5671..ee32ac2 100644 --- a/Modules/_tracemalloc.c +++ b/Modules/_tracemalloc.c @@ -1,4 +1,5 @@ #include "Python.h" +#include "pycore_traceback.h" #include "hashtable.h" #include "frameobject.h" #include "pythread.h" diff --git a/Modules/faulthandler.c b/Modules/faulthandler.c index 2083a03..aa466c4 100644 --- a/Modules/faulthandler.c +++ b/Modules/faulthandler.c @@ -1,5 +1,6 @@ #include "Python.h" #include "pycore_coreconfig.h" +#include "pycore_traceback.h" #include "pythread.h" #include <signal.h> #include <object.h> |