Skip to content

Commit 9790085

Browse files
Add version added
1 parent a9b53ed commit 9790085

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Doc/library/bdb.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,11 +164,15 @@ The :mod:`bdb` module also defines two classes:
164164
Start tracing. For ``'settrace'`` backend, this method is equivalent to
165165
``sys.settrace(self.trace_dispatch)``
166166

167+
.. versionadded:: 3.14
168+
167169
.. method:: stop_trace(self)
168170

169171
Stop tracing. For ``'settrace'`` backend, this method is equivalent to
170172
``sys.settrace(None)``
171173

174+
.. versionadded:: 3.14
175+
172176
.. method:: reset()
173177

174178
Set the :attr:`!botframe`, :attr:`!stopframe`, :attr:`!returnframe` and
@@ -397,13 +401,17 @@ The :mod:`bdb` module also defines two classes:
397401
called. This is helpful when the debugger is not interested in the current
398402
line.
399403

404+
.. versionadded:: 3.14
405+
400406
.. method:: restart_events()
401407

402408
Restart all the disabled events. This function is automatically called in
403409
``dispatch_*`` methods after ``user_*`` methods are called. If the
404410
``dispatch_*`` methods are not overridden, the disabled events will be
405411
restarted after each user interaction.
406412

413+
.. versionadded:: 3.14
414+
407415

408416
Derived classes and clients can call the following methods to get a data
409417
structure representing a stack trace.

0 commit comments

Comments
 (0)