Home
last modified time | relevance | path

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

/third_party/python/Lib/
Dbdb.py321 def set_trace(self, frame=None): member in Bdb
632 def set_trace(): function
634 Bdb().set_trace()
Ddoctest.py367 def set_trace(self, frame=None): member in _OutputRedirectingPdb
371 pdb.Pdb.set_trace(self, frame)
1468 save_set_trace = pdb.set_trace
1471 pdb.set_trace = self.debugger.set_trace
1486 pdb.set_trace = save_set_trace
Dpdb.py194 self.set_trace(frame)
1609 def set_trace(*, header=None): function
1613 pdb.set_trace(sys._getframe().f_back)
/third_party/python/Doc/library/
Dpdb.rst73 import pdb; pdb.set_trace()
81 instead of ``import pdb; pdb.set_trace()``.
131 .. function:: set_trace(*, header=None)
156 The ``run*`` functions and :func:`set_trace` are aliases for instantiating the
182 import pdb; pdb.Pdb(skip=['django.*']).set_trace()
199 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.rst205 the default binding (e.g. ``pdb.set_trace()``) expects no arguments, but
214 not set, or is set to the empty string, ``pdb.set_trace()`` is called.
Dfunctions.rst123 :func:`pdb.set_trace()` expecting no arguments. In this case, it is
/third_party/grpc/examples/python/debug/
DREADME.md52 `import pdb; pdb.set_trace()`. When interpreter see this line, it would pop out
/third_party/skia/tools/calmbench/
Dab.py39 from pdb import set_trace
/third_party/flutter/skia/tools/calmbench/
Dab.py37 from pdb import set_trace
/third_party/python/Lib/test/
Dtest_pdb.py1498 pdb.set_trace(header=header)
/third_party/boost/tools/build/src/build/
Dvirtual_target.py783 pdb.set_trace()
/third_party/python/Doc/using/
Dcmdline.rst583 string, it is equivalent to the value "pdb.set_trace". Setting this to the
/third_party/python/Doc/whatsnew/
D3.7.rst272 latter imports :mod:`pdb` and then calls ``pdb.set_trace()``, but by binding
1200 :func:`pdb.set_trace` now takes an optional *header* keyword-only
/third_party/python/Misc/
DNEWS13015 ``pdb.set_trace()``, but users may override ``sys.breakpointhook()`` to
13124 - bpo-31389: ``pdb.set_trace()`` now takes an optional keyword-only argument
DHISTORY5607 - Issue #13120: Allow to call pdb.set_trace() from thread.
19567 - ``doctest``'s new support for adding ``pdb.set_trace()`` calls to