Searched refs:set_trace (Results 1 – 17 of 17) sorted by relevance
/third_party/python/Lib/ |
D | bdb.py | 323 def set_trace(self, frame=None): member in Bdb 649 def set_trace(): function 651 Bdb().set_trace()
|
D | doctest.py | 368 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
|
D | pdb.py | 194 self.set_trace(frame) 1619 def set_trace(*, header=None): function 1623 pdb.set_trace(sys._getframe().f_back)
|
/third_party/python/Doc/library/ |
D | pdb.rst | 72 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()
|
D | bdb.rst | 236 .. method:: set_trace([frame]) 370 .. function:: set_trace()
|
D | doctest.rst | 1573 * 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()
|
D | sys.rst | 221 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.
|
D | functions.rst | 161 :func:`pdb.set_trace()` expecting no arguments. In this case, it is
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
D | scriptgenerator.py | 187 pdb.set_trace()
|
D | generator.py | 285 pdb.set_trace()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.7.0a2.rst | 190 ``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/ |
D | ab.py | 39 from pdb import set_trace
|
/third_party/python/Lib/test/ |
D | test_pdb.py | 1636 pdb.set_trace(header=header)
|
/third_party/vulkan-headers/registry/ |
D | generator.py | 334 pdb.set_trace()
|
/third_party/python/Doc/using/ |
D | cmdline.rst | 608 string, it is equivalent to the value "pdb.set_trace". Setting this to the
|
/third_party/python/Doc/whatsnew/ |
D | 3.7.rst | 273 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/ |
D | HISTORY | 5607 - Issue #13120: Allow to call pdb.set_trace() from thread. 19567 - ``doctest``'s new support for adding ``pdb.set_trace()`` calls to
|