| Index: gdb/testsuite/gdb.python/py-finish-breakpoint2.py | 
| diff --git a/gdb/testsuite/gdb.python/py-finish-breakpoint2.py b/gdb/testsuite/gdb.python/py-finish-breakpoint2.py | 
| index 984e77fc3e56285dcef488635df973b30ee83b98..18d50aa41bf6bfef9bddf8c255157a8924f1b0be 100644 | 
| --- a/gdb/testsuite/gdb.python/py-finish-breakpoint2.py | 
| +++ b/gdb/testsuite/gdb.python/py-finish-breakpoint2.py | 
| @@ -1,4 +1,4 @@ | 
| -# Copyright (C) 2011-2012 Free Software Foundation, Inc. | 
| +# Copyright (C) 2011-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 | 
| @@ -19,15 +19,15 @@ | 
| class ExceptionFinishBreakpoint(gdb.FinishBreakpoint): | 
| def __init__(self, frame): | 
| gdb.FinishBreakpoint.__init__ (self, frame, internal=1) | 
| -        self.silent = True; | 
| -        print "init ExceptionFinishBreakpoint" | 
| +        self.silent = True | 
| +        print ("init ExceptionFinishBreakpoint") | 
|  | 
| def stop(self): | 
| -        print "stopped at ExceptionFinishBreakpoint" | 
| +        print ("stopped at ExceptionFinishBreakpoint") | 
| return True | 
|  | 
| def out_of_scope(self): | 
| -        print "exception did not finish ..." | 
| +        print ("exception did not finish ...") | 
|  | 
|  | 
| -print "Python script imported" | 
| +print ("Python script imported") | 
|  |