cleanup.
authorpin <pin@fe552daf-6dbe-4428-90eb-1537e0879342>
Tue, 18 May 2010 13:30:02 +0000 (13:30 +0000)
committerpin <pin@fe552daf-6dbe-4428-90eb-1537e0879342>
Tue, 18 May 2010 13:30:02 +0000 (13:30 +0000)
git-svn-id: https://svn.cri.ensmp.fr/svn/minwii/trunk@168 fe552daf-6dbe-4428-90eb-1537e0879342

src/pywiiuse/pygame_wiimote.py

index 5540430..1750549 100755 (executable)
@@ -71,11 +71,6 @@ class wiimote_thread(Thread):
                             self.event_cb(m)
             except :
                 pass
-                
-            #try:
-            #    wiiuse.poll(self.wiimotes, self.nmotes)
-            #except:
-            #    pass
 
             # allow executing functions in this thread
             while True:
@@ -83,7 +78,6 @@ class wiimote_thread(Thread):
                     func, args = self.queue.get_nowait()
                 except Empty:
                     break
-                print 'do:', func.__name__, args
                 func(*args)
 
     def do(self, func, *args):