Changeset View
Changeset View
Standalone View
Standalone View
source/blender/python/intern/bpy_traceback.c
| Show All 19 Lines | |||||
| * This file contains utility functions for getting data from a python stack | * This file contains utility functions for getting data from a python stack | ||||
| * trace. | * trace. | ||||
| */ | */ | ||||
| #include <Python.h> | #include <Python.h> | ||||
| #include <frameobject.h> | #include <frameobject.h> | ||||
| #include "BLI_utildefines.h" | #include "BLI_utildefines.h" | ||||
| #include "BLI_path_util.h" | #include "BLI_path_utils.h" | ||||
| #ifdef WIN32 | #ifdef WIN32 | ||||
| # include "BLI_string.h" /* BLI_strcasecmp */ | # include "BLI_string.h" /* BLI_strcasecmp */ | ||||
| #endif | #endif | ||||
| #include "bpy_traceback.h" | #include "bpy_traceback.h" | ||||
| static const char *traceback_filepath(PyTracebackObject *tb, PyObject **coerce) | static const char *traceback_filepath(PyTracebackObject *tb, PyObject **coerce) | ||||
| { | { | ||||
| ▲ Show 20 Lines • Show All 154 Lines • Show Last 20 Lines | |||||