public inbox for archer-commits@sourceware.org
help / color / mirror / Atom feed
* [SCM] pmuldoon/python-backtrace: Move exception handler
@ 2013-03-11 21:00 pmuldoon
0 siblings, 0 replies; only message in thread
From: pmuldoon @ 2013-03-11 21:00 UTC (permalink / raw)
To: archer-commits
The branch, pmuldoon/python-backtrace has been updated
via 8f8c96f18c77c9e739903019cb0d9dfc74f0a6c0 (commit)
from 572234138f3483c99b2bda9c851e3777f308ce12 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email.
- Log -----------------------------------------------------------------
commit 8f8c96f18c77c9e739903019cb0d9dfc74f0a6c0
Author: Phil Muldoon <pmuldoon@redhat.com>
Date: Mon Mar 11 20:59:23 2013 +0000
Move exception handler
-----------------------------------------------------------------------
Summary of changes:
gdb/doc/gdb.texinfo | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
First 500 lines of diff:
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
index b3f15f0..2033bc9 100644
--- a/gdb/doc/gdb.texinfo
+++ b/gdb/doc/gdb.texinfo
@@ -24920,15 +24920,15 @@ class ElidingInlineIterator:
return self
def next(self):
- try:
- frame = next(self.input_iterator)
- except StopIteration:
- raise
-
+ frame = next(self.input_iterator)
+
if frame.inferior_frame().type() != gdb.INLINE_FRAME:
return frame
- eliding_frame = next(self.input_iterator)
+ try:
+ eliding_frame = next(self.input_iterator)
+ except StopIteration:
+ return frame
return ElidingFrameDecorator(eliding_frame, [frame])
@end smallexample
hooks/post-receive
--
Repository for Project Archer.
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2013-03-11 21:00 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-11 21:00 [SCM] pmuldoon/python-backtrace: Move exception handler pmuldoon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).