Home
last modified time | relevance | path

Searched refs:stopframe (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Lib/
Dbdb.py132 if self.stopframe and frame.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS:
147 if self.stopframe and frame.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS:
156 if self.stopframe is frame and self.stoplineno != -1:
179 elif (self.stopframe and frame is not self.stopframe
180 and self.stopframe.f_code.co_flags & GENERATOR_AND_COROUTINE_FLAGS
205 if frame is self.stopframe:
209 if not self.stopframe:
271 def _set_stopinfo(self, stopframe, returnframe, stoplineno=0): argument
278 self.stopframe = stopframe
354 self.stopframe = self.botframe
/external/python/cpython2/Lib/
Dbdb.py116 if frame is self.stopframe:
120 while frame is not None and frame is not self.stopframe:
176 def _set_stopinfo(self, stopframe, returnframe, stoplineno=0): argument
177 self.stopframe = stopframe
239 self.stopframe = self.botframe
/external/python/cpython2/Doc/library/
Dbdb.rst96 Set the :attr:`botframe`, :attr:`stopframe`, :attr:`returnframe` and
/external/python/cpython3/Doc/library/
Dbdb.rst104 Set the :attr:`botframe`, :attr:`stopframe`, :attr:`returnframe` and