1 # Copyright (C) 2013-2017 Free Software Foundation, Inc.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 class FrameIterator(object):
20 """A gdb.Frame iterator. Iterates over gdb.Frames or objects that
21 conform to that interface."""
23 def __init__(self
, frame_obj
):
24 """Initialize a FrameIterator.
27 frame_obj the starting frame."""
29 super(FrameIterator
, self
).__init
__()
30 self
.frame
= frame_obj
36 """next implementation.
39 The next oldest frame."""
44 self
.frame
= result
.older()
47 # Python 3.x requires __next__(self) while Python 2.x requires
48 # next(self). Define next(self), and for Python 3.x create this
This page took 0.035372 seconds and 4 git commands to generate.