Index: gdb/testsuite/gdb.python/py-pp-maint.py |
diff --git a/gdb/testsuite/gdb.python/py-pp-maint.py b/gdb/testsuite/gdb.python/py-pp-maint.py |
index 1677371b90291ff7847872b52707508d22e6bf2d..84b4c7024cb9474dd4c49c875f5421fc6f6f0187 100644 |
--- a/gdb/testsuite/gdb.python/py-pp-maint.py |
+++ b/gdb/testsuite/gdb.python/py-pp-maint.py |
@@ -1,4 +1,4 @@ |
-# Copyright (C) 2010-2012 Free Software Foundation, Inc. |
+# Copyright (C) 2010-2013 Free Software Foundation, Inc. |
# This program is free software; you can redistribute it and/or modify |
# it under the terms of the GNU General Public License as published by |
@@ -37,7 +37,7 @@ def lookup_function_lookup_test(val): |
return None |
-class pp_s: |
+class pp_s (object): |
def __init__(self, val): |
self.val = val |
@@ -49,7 +49,7 @@ class pp_s: |
return "a=<" + str(self.val["a"]) + "> b=<" + str(self.val["b"]) + ">" |
-class pp_ss: |
+class pp_ss (object): |
def __init__(self, val): |
self.val = val |