public inbox for archer-commits@sourceware.org
help / color / mirror / Atom feed
* [SCM]  tromey/python: pahole.py: Fix the Python3 port.  - https://bugzilla.redhat.com/show_bug.cgi?id=1264532
@ 2015-09-18 18:54 jkratoch
  0 siblings, 0 replies; only message in thread
From: jkratoch @ 2015-09-18 18:54 UTC (permalink / raw)
  To: archer-commits

The branch, tromey/python has been updated
       via  f0ee78c5ccefe388a64273353ecd5c99dae62558 (commit)
      from  c8a8413e160d935c12cbc6e484dd8b7ab80f5f62 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email.

- Log -----------------------------------------------------------------
commit f0ee78c5ccefe388a64273353ecd5c99dae62558
Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Date:   Fri Sep 18 20:54:22 2015 +0200

    pahole.py: Fix the Python3 port.
     - https://bugzilla.redhat.com/show_bug.cgi?id=1264532

-----------------------------------------------------------------------

Summary of changes:
 gdb/python/lib/gdb/command/pahole.py |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

First 500 lines of diff:
diff --git a/gdb/python/lib/gdb/command/pahole.py b/gdb/python/lib/gdb/command/pahole.py
index dee04f5..e08eaf5 100644
--- a/gdb/python/lib/gdb/command/pahole.py
+++ b/gdb/python/lib/gdb/command/pahole.py
@@ -55,19 +55,19 @@ It prints the type and displays comments showing where holes are."""
                 fieldsize = 8 * ftype.sizeof
 
             # TARGET_CHAR_BIT
-            print (' /* %3d %3d */' % (int (bitpos / 8), int (fieldsize / 8)))
+            print (' /* %3d %3d */' % (int (bitpos / 8), int (fieldsize / 8)), end = "")
             bitpos = bitpos + fieldsize
 
             if ftype.code == gdb.TYPE_CODE_STRUCT:
                 self.pahole (ftype, level + 1, field.name)
             else:
-                print (' ' * (2 + 2 * level))
+                print (' ' * (2 + 2 * level), end = "")
                 print ('%s %s' % (str (ftype), field.name))
 
         if level == 0:
             self.maybe_print_hole(bitpos, 8 * type.sizeof)
 
-        print (' ' * (14 + 2 * level))
+        print (' ' * (14 + 2 * level), end = "")
         print ('} %s' % name)
 
     def invoke (self, arg, from_tty):
@@ -75,7 +75,7 @@ It prints the type and displays comments showing where holes are."""
         type = type.strip_typedefs ()
         if type.code != gdb.TYPE_CODE_STRUCT:
             raise (TypeError, '%s is not a struct type' % arg)
-        print (' ' * 14)
+        print (' ' * 14, end = "")
         self.pahole (type, 0, '')
 
 Pahole()


hooks/post-receive
--
Repository for Project Archer.


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-09-18 18:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-18 18:54 [SCM] tromey/python: pahole.py: Fix the Python3 port. - https://bugzilla.redhat.com/show_bug.cgi?id=1264532 jkratoch

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).