public inbox for archer-commits@sourceware.org
help / color / mirror / Atom feed
From: pmuldoon@sourceware.org
To: archer-commits@sourceware.org
Subject: [SCM]  pmuldoon/python-backtrace: Move exception handler
Date: Mon, 11 Mar 2013 21:00:00 -0000	[thread overview]
Message-ID: <20130311210001.12649.qmail@sourceware.org> (raw)

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.


                 reply	other threads:[~2013-03-11 21:00 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20130311210001.12649.qmail@sourceware.org \
    --to=pmuldoon@sourceware.org \
    --cc=archer-commits@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).