Searched refs:set_trace (Results 1 – 17 of 17) sorted by relevance
/third_party/python/Lib/ |
D | bdb.py | 321 def set_trace(self, frame=None): member in Bdb 632 def set_trace(): function 634 Bdb().set_trace()
|
D | doctest.py | 367 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
|
D | pdb.py | 194 self.set_trace(frame) 1609 def set_trace(*, header=None): function 1613 pdb.set_trace(sys._getframe().f_back)
|
/third_party/python/Doc/library/ |
D | pdb.rst | 73 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()
|
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 | 205 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.
|
D | functions.rst | 123 :func:`pdb.set_trace()` expecting no arguments. In this case, it is
|
/third_party/grpc/examples/python/debug/ |
D | README.md | 52 `import pdb; pdb.set_trace()`. When interpreter see this line, it would pop out
|
/third_party/skia/tools/calmbench/ |
D | ab.py | 39 from pdb import set_trace
|
/third_party/flutter/skia/tools/calmbench/ |
D | ab.py | 37 from pdb import set_trace
|
/third_party/python/Lib/test/ |
D | test_pdb.py | 1498 pdb.set_trace(header=header)
|
/third_party/boost/tools/build/src/build/ |
D | virtual_target.py | 783 pdb.set_trace()
|
/third_party/python/Doc/using/ |
D | cmdline.rst | 583 string, it is equivalent to the value "pdb.set_trace". Setting this to the
|
/third_party/python/Doc/whatsnew/ |
D | 3.7.rst | 272 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/ |
D | NEWS | 13015 ``pdb.set_trace()``, but users may override ``sys.breakpointhook()`` to 13124 - bpo-31389: ``pdb.set_trace()`` now takes an optional keyword-only argument
|
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
|