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-11-05 01:36:46 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-11-05 01:36:46 +0300
commite6ea68a31cf800f903653495fc7cdd09bde965f2 (patch)
tree1a2a4c53b2590f9c85e1caaab7df5b028a3fc85e /source/blender/python/intern/bpy_util.c
parent08bbda500530e89b1a0f18006a248529e858511b (diff)
- missing return values
- more detailed exceptions (always give file:line incase the python exception doesnt) - fix some errors in the edit docs editing docs still fails, need to figure out why.
Diffstat (limited to 'source/blender/python/intern/bpy_util.c')
-rw-r--r--source/blender/python/intern/bpy_util.c16
1 files changed, 12 insertions, 4 deletions
diff --git a/source/blender/python/intern/bpy_util.c b/source/blender/python/intern/bpy_util.c
index 1766be62c83..86407e0c818 100644
--- a/source/blender/python/intern/bpy_util.c
+++ b/source/blender/python/intern/bpy_util.c
@@ -69,7 +69,7 @@ static char *bpy_flag_error_str(BPY_flag_def *flagdef)
BLI_dynstr_appendf(dynstr, fd!=flagdef?", '%s'":"'%s'", fd->name);
fd++;
}
-
+
cstring = BLI_dynstr_get_cstring(dynstr);
BLI_dynstr_free(dynstr);
return cstring;
@@ -414,7 +414,10 @@ int BPy_errors_to_report(ReportList *reports)
{
PyObject *pystring;
char *cstring;
-
+
+ char *filename;
+ int lineno;
+
if (!PyErr_Occurred())
return 1;
@@ -432,10 +435,15 @@ int BPy_errors_to_report(ReportList *reports)
return 0;
}
+ BPY_getFileAndNum(&filename, &lineno);
+
cstring= _PyUnicode_AsString(pystring);
- BKE_report(reports, RPT_ERROR, cstring);
- fprintf(stderr, "%s\n", cstring); // not exactly needed. just for testing
+ BKE_reportf(reports, RPT_ERROR, "%s\nlocation:%s:%d\n", cstring, filename, lineno);
+
+ fprintf(stderr, "%s\nlocation:%s:%d\n", cstring, filename, lineno); // not exactly needed. just for testing
+
Py_DECREF(pystring);
return 1;
}
+