Changeset - 8c7f136120a9
[Not reviewed]
default
0 1 0
drewp - 21 years ago 2004-06-16 06:56:40

update dispatcher import
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
flax/tracker
Show inline comments
 
#!/usr/bin/python
 
from __future__ import division,nested_scopes
 

	
 
import sys
 
sys.path.append("../../editor/pour")
 
sys.path.append("../light8")
 

	
 
from Submaster import Submaster
 
from skim.zooming import Zooming,Pair
 
from math import sqrt,sin,cos
 
from pygame.rect import Rect
 
from xmlnodebase import xmlnodeclass,collectiveelement,xmldocfile
 
import dispatcher
 
from dispatch import dispatcher
 

	
 
import dmxclient
 

	
 
import Tkinter as tk
 

	
 
defaultfont="arial 8"
 

	
 
def pairdist(pair1,pair2):
 
    return pair1.dist(pair2)
 

	
 
def canvashighlighter(canvas,obj,attribute,normalval,highlightval):
 
    """creates bindings on a canvas obj that make attribute go
0 comments (0 inline, 0 general)