|
From: <ef...@us...> - 2010-10-10 20:30:43
|
Revision: 8739
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8739&view=rev
Author: efiring
Date: 2010-10-10 20:30:37 +0000 (Sun, 10 Oct 2010)
Log Message:
-----------
backend_tkagg: delete dead code
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/backends/backend_tkagg.py
Modified: trunk/matplotlib/lib/matplotlib/backends/backend_tkagg.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/backends/backend_tkagg.py 2010-10-09 01:15:06 UTC (rev 8738)
+++ trunk/matplotlib/lib/matplotlib/backends/backend_tkagg.py 2010-10-10 20:30:37 UTC (rev 8739)
@@ -213,18 +213,6 @@
self._master = master
self._tkcanvas.focus_set()
- # a dict from func-> cbook.Scheduler threads
- self.sourced = dict()
-
- # call the idle handler
- def on_idle(*ignore):
- self.idle_event()
- return True
-
- # disable until you figure out how to handle threads and interrupts
- #t = cbook.Idle(on_idle)
- #self._tkcanvas.after_idle(lambda *ignore: t.start())
-
def resize(self, event):
width, height = event.width, event.height
if self._resize_callback is not None:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|