Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2009-03-02 23:18:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-03-02 23:18:29 +0300
commitc2fdac64c4eed74a146507c3e3d0b8b5f3183174 (patch)
tree6863689031a01d1728d0a7ae7d3beb0d1e3b69e8 /source/blender/python/intern/bpy_util.c
parent24e8d7aa749a8e52abff4b06f3ded6ae01625b02 (diff)
* errors in bpyui draw scripts were segfaulting
* added PyLineSpit(), useful for debugging so you can easily find the line of the python script running.
Diffstat (limited to 'source/blender/python/intern/bpy_util.c')
-rw-r--r--source/blender/python/intern/bpy_util.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/source/blender/python/intern/bpy_util.c b/source/blender/python/intern/bpy_util.c
index 31d15d8a69e..8bdb6334a91 100644
--- a/source/blender/python/intern/bpy_util.c
+++ b/source/blender/python/intern/bpy_util.c
@@ -162,6 +162,16 @@ void PyObSpit(char *name, PyObject *var) {
fprintf(stderr, "\n");
}
+void PyLineSpit(void) {
+ char filename[512];
+ int lineno;
+
+ PyErr_Clear();
+ BPY_getFileAndNum(&filename, &lineno);
+
+ fprintf(stderr, "%s:%d\n", filename, lineno);
+}
+
void BPY_getFileAndNum(char **filename, int *lineno)
{
PyObject *getframe, *frame;