Home
last modified time | relevance | path

Searched refs:set_trace (Results 1 – 17 of 17) sorted by relevance

/third_party/python/Lib/
Dbdb.py323 def set_trace(self, frame=None): member in Bdb
649 def set_trace(): function
651 Bdb().set_trace()
Ddoctest.py368 def set_trace(self, frame=None): member in _OutputRedirectingPdb
372 pdb.Pdb.set_trace(self, frame)
1478 save_set_trace = pdb.set_trace
1481 pdb.set_trace = self.debugger.set_trace
1496 pdb.set_trace = save_set_trace
Dpdb.py194 self.set_trace(frame)
1619 def set_trace(*, header=None): function
1623 pdb.set_trace(sys._getframe().f_back)
/third_party/python/Doc/library/
Dpdb.rst72 import pdb; pdb.set_trace()
80 instead of ``import pdb; pdb.set_trace()``.
130 .. function:: set_trace(*, header=None)
155 The ``run*`` functions and :func:`set_trace` are aliases for instantiating the
181 import pdb; pdb.Pdb(skip=['django.*']).set_trace()
198 set_trace()
Dbdb.rst236 .. method:: set_trace([frame])
370 .. function:: set_trace()
Ddoctest.rst1573 * You can add a call to :func:`pdb.set_trace` in a doctest example, and you'll
1583 ... import pdb; pdb.set_trace()
1594 -> import pdb; pdb.set_trace()
1598 3 -> import pdb; pdb.set_trace()
Dsys.rst221 the default binding (e.g. ``pdb.set_trace()``) expects no arguments, but
230 not set, or is set to the empty string, ``pdb.set_trace()`` is called.
Dfunctions.rst161 :func:`pdb.set_trace()` expecting no arguments. In this case, it is
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
Dscriptgenerator.py187 pdb.set_trace()
Dgenerator.py285 pdb.set_trace()
/third_party/python/Misc/NEWS.d/
D3.7.0a2.rst190 ``pdb.set_trace()``, but users may override ``sys.breakpointhook()`` to call
510 ``pdb.set_trace()`` now takes an optional keyword-only argument ``header``.
/third_party/skia/tools/calmbench/
Dab.py39 from pdb import set_trace
/third_party/python/Lib/test/
Dtest_pdb.py1636 pdb.set_trace(header=header)
/third_party/vulkan-headers/registry/
Dgenerator.py334 pdb.set_trace()
/third_party/python/Doc/using/
Dcmdline.rst608 string, it is equivalent to the value "pdb.set_trace". Setting this to the
/third_party/python/Doc/whatsnew/
D3.7.rst273 latter imports :mod:`pdb` and then calls ``pdb.set_trace()``, but by binding
1201 :func:`pdb.set_trace` now takes an optional *header* keyword-only
/third_party/python/Misc/
DHISTORY5607 - Issue #13120: Allow to call pdb.set_trace() from thread.
19567 - ``doctest``'s new support for adding ``pdb.set_trace()`` calls to