summaryrefslogtreecommitdiffstats
path: root/Doc/reference/datamodel.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/reference/datamodel.rst')
-rw-r--r--Doc/reference/datamodel.rst7
1 files changed, 6 insertions, 1 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index 9e9fe83..f7d3d2d 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -1214,10 +1214,15 @@ Frame objects support one method:
objects (for example when catching an exception and storing its
traceback for later use).
- :exc:`RuntimeError` is raised if the frame is currently executing.
+ :exc:`RuntimeError` is raised if the frame is currently executing
+ or suspended.
.. versionadded:: 3.4
+ .. versionchanged:: 3.13
+ Attempting to clear a suspended frame raises :exc:`RuntimeError`
+ (as has always been the case for executing frames).
+
.. _traceback-objects: