[gtksourceview] Update python tests for Python 3
- From: SÃbastien Wilmet <swilmet src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtksourceview] Update python tests for Python 3
- Date: Sun, 20 Jan 2013 13:31:09 +0000 (UTC)
commit ebb9e96734cab95714f0b8e9b8ab292038b0ddb5
Author: Yaakov Selkowitz <yselkowitz users sourceforge net>
Date: Sun Jan 6 22:22:01 2013 -0600
Update python tests for Python 3
print was changed from a statement to a function in 3.0, but as simple
print calls, this syntax is compatible with both 2.x and 3.x.
Signed-off-by: Yaakov Selkowitz <yselkowitz users sourceforge net>
https://bugzilla.gnome.org/show_bug.cgi?id=691268
tests/test-widget.py | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/tests/test-widget.py b/tests/test-widget.py
index c88769c..4bffbec 100644
--- a/tests/test-widget.py
+++ b/tests/test-widget.py
@@ -95,7 +95,7 @@ class SearchDialog(Gtk.Dialog):
self._search_widget.set_text(what)
self._search_widget.set_activates_default(True)
self._search_widget.show()
- print self.get_content_area()
+ print(self.get_content_area())
self.get_content_area().pack_start(self._search_widget, True, True, 0)
if replace:
@@ -512,7 +512,7 @@ class Window(Gtk.Window):
bracket = place.get_char()
row = place.get_line() + 1
col = place.get_line_offset() + 1
- print "Matched bracket: '%c' at row: %i, col: %i" % (bracket, row, col)
+ print("Matched bracket: '%c' at row: %i, col: %i" % (bracket, row, col))
def open_file(self, filename):
if os.path.isabs(filename):
@@ -556,9 +556,9 @@ class Window(Gtk.Window):
return True
def paginate_cb(self, operation, context, compositor):
- print "Pagination progress: %.2f %%\n" % (compositor.get_pagination_progress () * 100.0)
+ print("Pagination progress: %.2f %%\n" % (compositor.get_pagination_progress () * 100.0))
if compositor.paginate (context):
- print "Pagination progress: %.2f %%\n" % (compositor.get_pagination_progress () * 100.0)
+ print("Pagination progress: %.2f %%\n" % (compositor.get_pagination_progress () * 100.0))
operation.set_n_pages (compositor.get_n_pages ())
return True
return False
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]