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 <campbell@blender.org>2022-05-03 10:54:37 +0300
committerCampbell Barton <campbell@blender.org>2022-05-03 11:22:54 +0300
commit74dfb7ca23b73b714b73bfaf3553d05fbbc2a29c (patch)
tree9325eafff8b5771183b2d31dc388be6e8106bb61 /source/blender/python/intern/bpy_capi_utils.h
parenta821a2db3d5e4c5a302de677a127a662942c46ae (diff)
Fix T97731: Python traceback no longer includes line-numbers
Regression caused by [0] that caused the error message to be created based on a normalized exception (which hid line numbers). PyC_ExceptionBuffer{_Simple} & BPy_errors_to_report no longer clears the exception. This could have been resolved by changing python_script_error_jump however that would involve changes to reference counting that are more risky (noted in code-comment). [0]: 2d2baeaf04d481f284bc2f098fb6d7ee9268151f
Diffstat (limited to 'source/blender/python/intern/bpy_capi_utils.h')
-rw-r--r--source/blender/python/intern/bpy_capi_utils.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/python/intern/bpy_capi_utils.h b/source/blender/python/intern/bpy_capi_utils.h
index ab5ce7818f3..73a5d2ebc79 100644
--- a/source/blender/python/intern/bpy_capi_utils.h
+++ b/source/blender/python/intern/bpy_capi_utils.h
@@ -38,6 +38,8 @@ bool BPy_errors_to_report_ex(struct ReportList *reports,
* BKE_reports_print(reports);
* }
* \endcode
+ *
+ * \note The caller is responsible for clearing the error (see #PyErr_Clear).
*/
bool BPy_errors_to_report(struct ReportList *reports);