From 64193f3315c1009f9d14dad8431b8900b6c777c8 Mon Sep 17 00:00:00 2001 From: Anna Wiggins Date: Wed, 18 Apr 2012 12:22:00 -0400 Subject: [PATCH] Removed some debugging output --- widgets/gogame.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/widgets/gogame.py b/widgets/gogame.py index 11b31b7..88e5a58 100644 --- a/widgets/gogame.py +++ b/widgets/gogame.py @@ -114,8 +114,6 @@ class GoGame(gtk.HBox): def do_board_configure(self, widget, event): - print 'configure' - gc = widget.get_style().fg_gc[gtk.STATE_NORMAL] x,y,width,height = widget.get_allocation() self.board_backbuf = gtk.gdk.Pixmap(widget.window, width, height, depth=-1) @@ -126,8 +124,6 @@ class GoGame(gtk.HBox): def do_board_expose(self, widget, event): - print 'expose' - x , y, width, height = event.area widget.window.draw_drawable(widget.get_style().fg_gc[gtk.STATE_NORMAL], self.board_backbuf, x, y, x, y, width, height) @@ -135,8 +131,6 @@ class GoGame(gtk.HBox): def update_board(self, to_update=None): - print 'update' - if to_update == None: to_update = range(len(self.goban.board))