Example #1
0
    def run(self, args):
        """**up** [*count*]

Move the current frame up in the stack trace (to an older frame). 0 is
the most recent frame. If no count is given, move up 1.

See also `down` and `frame`."""
        Mframe.adjust_relative(self.proc, self.name, args, self.signum)
        return False
Example #2
0
    def run(self, args):
        """**up** [*count*]

Move the current frame up in the stack trace (to an older frame). 0 is
the most recent frame. If no count is given, move up 1.

See also:
---------

`down` and `frame`."""
        Mframe.adjust_relative(self.proc, self.name, args, self.signum)
        return False
Example #3
0
    def run(self, args):
        """**down** [*count*]

Move the current frame down in the stack trace (to a newer frame). 0
is the most recent frame. If no count is given, move down 1.

See also:
---------

`up` and `frame`."""

        Mframe.adjust_relative(self.proc, self.name, args, self.signum)
        return False
Example #4
0
    def run(self, args):
        """**down** [*count*]

        Move the current frame down in the stack trace (to a newer frame). 0
        is the most recent frame. If no count is given, move down 1.

        See also:
        ---------

        `up` and `frame`."""

        adjust_relative(self.proc, self.name, args, self.signum)
        return False