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>2012-12-03 11:10:31 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-12-03 11:10:31 +0400
commitca25fd0307f9387af34cfa3120cecb7e12575579 (patch)
tree15187ae2abd6c34bede05308ae6c16b910c900fb /doc/python_api/rst/info_gotcha.rst
parent671b871e7f5d3e031017aec4d976e8e3eaa9e50e (diff)
fix [#33389] Curve points restricted to 0..1 range,
also added note on python3.3's faulthandler module.
Diffstat (limited to 'doc/python_api/rst/info_gotcha.rst')
-rw-r--r--doc/python_api/rst/info_gotcha.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/python_api/rst/info_gotcha.rst b/doc/python_api/rst/info_gotcha.rst
index e60f1e256cd..08548ea73e5 100644
--- a/doc/python_api/rst/info_gotcha.rst
+++ b/doc/python_api/rst/info_gotcha.rst
@@ -537,6 +537,13 @@ Here are some general hints to avoid running into these problems.
* Crashes may not happen every time, they may happen more on some configurations/operating-systems.
+.. note::
+
+ To find the line of your script that crashes you can use the ``faulthandler`` module.
+ See `faulthandler docs<http://docs.python.org/dev/library/faulthandler.html>`_.
+
+ While the crash may be in Blenders C/C++ code, this can help a lot to track down the area of the script that causes the crash.
+
Undo/Redo
---------