2003-12-09 01:23:28 +00:00
|
|
|
|
|
|
|
import random
|
|
|
|
import time
|
|
|
|
|
|
|
|
import wx
|
2001-10-16 19:06:09 +00:00
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
colours = [
|
|
|
|
"BLACK",
|
|
|
|
"BLUE",
|
|
|
|
"BLUE VIOLET",
|
|
|
|
"BROWN",
|
|
|
|
"CYAN",
|
|
|
|
"DARK GREY",
|
|
|
|
"DARK GREEN",
|
|
|
|
"GOLD",
|
|
|
|
"GREY",
|
|
|
|
"GREEN",
|
|
|
|
"MAGENTA",
|
|
|
|
"NAVY",
|
|
|
|
"PINK",
|
|
|
|
"RED",
|
|
|
|
"SKY BLUE",
|
|
|
|
"VIOLET",
|
|
|
|
"YELLOW",
|
|
|
|
]
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
def makeRandomPoints(num, w, h):
|
|
|
|
pnts = []
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2001-10-16 19:06:09 +00:00
|
|
|
for i in range(num):
|
2003-12-09 01:23:28 +00:00
|
|
|
x = random.randint(0, w)
|
|
|
|
y = random.randint(0, h)
|
2001-10-16 19:06:09 +00:00
|
|
|
pnts.append( (x,y) )
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2001-10-16 19:06:09 +00:00
|
|
|
return pnts
|
|
|
|
|
|
|
|
|
|
|
|
def makeRandomLines(num, w, h):
|
|
|
|
pnts = []
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2001-10-16 19:06:09 +00:00
|
|
|
for i in range(num):
|
2003-12-09 01:23:28 +00:00
|
|
|
x1 = random.randint(0, w)
|
|
|
|
y1 = random.randint(0, h)
|
|
|
|
x2 = random.randint(0, w)
|
|
|
|
y2 = random.randint(0, h)
|
2001-10-16 19:06:09 +00:00
|
|
|
pnts.append( (x1,y1, x2,y2) )
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2001-10-16 19:06:09 +00:00
|
|
|
return pnts
|
|
|
|
|
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
def makeRandomRectangles(num, W, H):
|
|
|
|
rects = []
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
for i in range(num):
|
2003-12-09 01:23:28 +00:00
|
|
|
w = random.randint(10, W/2)
|
|
|
|
h = random.randint(10, H/2)
|
|
|
|
x = random.randint(0, W - w)
|
|
|
|
y = random.randint(0, H - h)
|
2003-03-25 06:35:27 +00:00
|
|
|
rects.append( (x, y, w, h) )
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
return rects
|
|
|
|
|
|
|
|
|
|
|
|
def makeRandomText(num):
|
2003-10-02 00:58:06 +00:00
|
|
|
Np = 8 # number of characters in text
|
2003-03-25 06:35:27 +00:00
|
|
|
text = []
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
for i in range(num):
|
|
|
|
word = []
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
for i in range(Np):
|
2003-12-09 01:23:28 +00:00
|
|
|
c = chr( random.randint(48, 122) )
|
2003-03-25 06:35:27 +00:00
|
|
|
word.append( c )
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
text.append( "".join(word) )
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
return text
|
|
|
|
|
|
|
|
|
|
|
|
def makeRandomPolygons(num, W, H):
|
|
|
|
Np = 8 # number of points per polygon
|
|
|
|
polys = []
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
for i in range(num):
|
|
|
|
poly = []
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
for i in range(Np):
|
2003-12-09 01:23:28 +00:00
|
|
|
x = random.randint(0, W)
|
|
|
|
y = random.randint(0, H)
|
2003-03-25 06:35:27 +00:00
|
|
|
poly.append( (x,y) )
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
polys.append( poly )
|
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
return polys
|
2003-03-25 06:35:27 +00:00
|
|
|
|
|
|
|
|
2001-10-16 19:06:09 +00:00
|
|
|
def makeRandomPens(num, cache):
|
|
|
|
pens = []
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2001-10-16 19:06:09 +00:00
|
|
|
for i in range(num):
|
2003-12-09 01:23:28 +00:00
|
|
|
c = random.choice(colours)
|
|
|
|
t = random.randint(1, 4)
|
|
|
|
|
2001-10-16 19:06:09 +00:00
|
|
|
if not cache.has_key( (c, t) ):
|
2003-12-09 01:23:28 +00:00
|
|
|
cache[(c, t)] = wx.Pen(c, t)
|
|
|
|
|
2001-10-16 19:06:09 +00:00
|
|
|
pens.append( cache[(c, t)] )
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2001-10-16 19:06:09 +00:00
|
|
|
return pens
|
|
|
|
|
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
def makeRandomBrushes(num, cache):
|
|
|
|
brushes = []
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
for i in range(num):
|
2003-12-09 01:23:28 +00:00
|
|
|
c = random.choice(colours)
|
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
if not cache.has_key(c):
|
2003-12-09 01:23:28 +00:00
|
|
|
cache[c] = wx.Brush(c)
|
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
brushes.append( cache[c] )
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
return brushes
|
2001-10-16 19:06:09 +00:00
|
|
|
|
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
def makeRandomColors(num):
|
|
|
|
colors = []
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
for i in range(num):
|
2003-12-11 19:55:48 +00:00
|
|
|
c = random.choice(colours)
|
|
|
|
colors.append(wx.NamedColour(c))
|
2003-03-25 06:35:27 +00:00
|
|
|
return colors
|
2001-10-16 19:06:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
pencache = {}
|
|
|
|
brushcache = {}
|
|
|
|
points = None
|
|
|
|
lines = None
|
|
|
|
rectangles = None
|
|
|
|
polygons = None
|
|
|
|
text = None
|
|
|
|
pens = None
|
|
|
|
brushes = None
|
|
|
|
colors1 = None
|
|
|
|
colors2 = None
|
|
|
|
|
|
|
|
|
|
|
|
def Init(w, h, n):
|
|
|
|
global pencache
|
|
|
|
global brushcache
|
|
|
|
global points
|
|
|
|
global lines
|
|
|
|
global rectangles
|
|
|
|
global polygons
|
|
|
|
global text
|
|
|
|
global pens
|
|
|
|
global brushes
|
|
|
|
global colors1
|
|
|
|
global colors2
|
|
|
|
|
|
|
|
# make some lists of random shapes
|
|
|
|
points = makeRandomPoints(n, w, h)
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
try:
|
|
|
|
import Numeric
|
|
|
|
Apoints = Numeric.array(points)
|
|
|
|
except:
|
|
|
|
pass
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
lines = makeRandomLines(n, w, h)
|
|
|
|
rectangles = makeRandomRectangles(n, w, h)
|
|
|
|
polygons = makeRandomPolygons(n, w, h)
|
|
|
|
text = makeRandomText(n)
|
|
|
|
|
|
|
|
# make some random pens and brushes
|
|
|
|
pens = makeRandomPens(n, pencache)
|
|
|
|
brushes = makeRandomBrushes(n, brushcache)
|
|
|
|
# make some random color lists
|
|
|
|
colors1 = makeRandomColors(n)
|
|
|
|
colors2 = makeRandomColors(n)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def TestPoints(dc,log):
|
|
|
|
dc.BeginDrawing()
|
|
|
|
start = time.time()
|
2003-12-09 01:23:28 +00:00
|
|
|
dc.SetPen(wx.Pen("BLACK", 4))
|
2003-03-25 06:35:27 +00:00
|
|
|
|
|
|
|
dc.DrawPointList(points)
|
2003-12-09 01:23:28 +00:00
|
|
|
dc.DrawPointList(points, wx.Pen("RED", 2))
|
2003-03-25 06:35:27 +00:00
|
|
|
dc.DrawPointList(points, pens)
|
|
|
|
|
|
|
|
dc.EndDrawing()
|
|
|
|
log.write("DrawTime: %s seconds with DrawPointList\n" % (time.time() - start))
|
|
|
|
|
|
|
|
|
|
|
|
def TestArrayPoints(dc,log):
|
|
|
|
try:
|
|
|
|
import Numeric
|
2001-10-16 19:06:09 +00:00
|
|
|
|
|
|
|
dc.BeginDrawing()
|
|
|
|
start = time.time()
|
2003-12-09 01:23:28 +00:00
|
|
|
dc.SetPen(wx.Pen("BLACK", 1))
|
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
for i in range(1):
|
|
|
|
dc.DrawPointList(Apoints)
|
2003-12-09 01:23:28 +00:00
|
|
|
|
|
|
|
#dc.DrawPointList(Apoints, wx.Pen("RED", 2))
|
2003-03-25 06:35:27 +00:00
|
|
|
#dc.DrawPointList(Apoints, pens)
|
|
|
|
dc.EndDrawing()
|
|
|
|
log.write("DrawTime: %s seconds with DrawPointList an Numpy Array\n" % (time.time() - start))
|
|
|
|
except ImportError:
|
|
|
|
log.write("Couldn't import Numeric")
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def TestLines(dc,log):
|
|
|
|
dc.BeginDrawing()
|
|
|
|
start = time.time()
|
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
dc.SetPen(wx.Pen("BLACK", 2))
|
2003-03-25 06:35:27 +00:00
|
|
|
dc.DrawLineList(lines)
|
2003-12-09 01:23:28 +00:00
|
|
|
dc.DrawLineList(lines, wx.Pen("RED", 2))
|
2003-03-25 06:35:27 +00:00
|
|
|
dc.DrawLineList(lines, pens)
|
|
|
|
|
|
|
|
dc.EndDrawing()
|
|
|
|
log.write("DrawTime: %s seconds with DrawLineList\n" % (time.time() - start))
|
|
|
|
|
|
|
|
|
|
|
|
def TestRectangles(dc,log):
|
|
|
|
dc.BeginDrawing()
|
|
|
|
start = time.time()
|
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
dc.SetPen( wx.Pen("BLACK",1) )
|
|
|
|
dc.SetBrush( wx.Brush("RED") )
|
2001-10-16 19:06:09 +00:00
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
dc.DrawRectangleList(rectangles)
|
|
|
|
dc.DrawRectangleList(rectangles,pens)
|
|
|
|
dc.DrawRectangleList(rectangles,pens[0],brushes)
|
|
|
|
dc.DrawRectangleList(rectangles,pens,brushes[0])
|
|
|
|
dc.DrawRectangleList(rectangles,None,brushes)
|
|
|
|
## for i in range(10):
|
|
|
|
## #dc.DrawRectangleList(rectangles,pens,brushes)
|
|
|
|
## dc.DrawRectangleList(rectangles)
|
|
|
|
|
|
|
|
dc.EndDrawing()
|
|
|
|
log.write("DrawTime: %s seconds with DrawRectanglesList\n" % (time.time() - start))
|
|
|
|
|
|
|
|
|
|
|
|
def TestEllipses(dc,log):
|
|
|
|
dc.BeginDrawing()
|
|
|
|
start = time.time()
|
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
dc.SetPen( wx.Pen("BLACK",1) )
|
|
|
|
dc.SetBrush( wx.Brush("RED") )
|
2003-03-25 06:35:27 +00:00
|
|
|
|
|
|
|
dc.DrawEllipseList(rectangles)
|
|
|
|
dc.DrawEllipseList(rectangles,pens)
|
|
|
|
dc.DrawEllipseList(rectangles,pens[0],brushes)
|
|
|
|
dc.DrawEllipseList(rectangles,pens,brushes[0])
|
|
|
|
dc.DrawEllipseList(rectangles,None,brushes)
|
|
|
|
dc.DrawEllipseList(rectangles,pens,brushes)
|
|
|
|
|
|
|
|
dc.EndDrawing()
|
|
|
|
log.write("DrawTime: %s seconds with DrawEllipsesList\n" % (time.time() - start))
|
|
|
|
|
|
|
|
|
|
|
|
def TestRectanglesArray(dc,log):
|
|
|
|
try:
|
|
|
|
import Numeric
|
|
|
|
Apoints = Numeric.array(rectangles)
|
|
|
|
|
|
|
|
dc.BeginDrawing()
|
|
|
|
start = time.time()
|
2003-12-09 01:23:28 +00:00
|
|
|
dc.SetPen(wx.Pen("BLACK", 1))
|
2003-03-25 06:35:27 +00:00
|
|
|
dc.DrawRectangleList(rectangles)
|
|
|
|
dc.DrawRectangleList(rectangles,pens)
|
|
|
|
dc.DrawRectangleList(rectangles,pens[0],brushes)
|
|
|
|
dc.DrawRectangleList(rectangles,pens,brushes[0])
|
|
|
|
dc.DrawRectangleList(rectangles,None,brushes)
|
|
|
|
## for i in range(10):
|
|
|
|
## #dc.DrawRectangleList(rectangles,pens,brushes)
|
|
|
|
## dc.DrawRectangleList(rectangles)
|
2001-10-16 19:06:09 +00:00
|
|
|
|
|
|
|
dc.EndDrawing()
|
2003-03-25 06:35:27 +00:00
|
|
|
log.write("DrawTime: %s seconds with DrawRectangleList and Numpy Array\n" % (time.time() - start))
|
|
|
|
except ImportError:
|
|
|
|
log.write("Couldn't import Numeric")
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def TestRectanglesLoop(dc,log):
|
|
|
|
dc.BeginDrawing()
|
|
|
|
|
|
|
|
start = time.time()
|
|
|
|
dc.DrawRectangleList(rectangles,pens,brushes)
|
|
|
|
log.write("DrawTime: %s seconds with DrawRectanglesList\n" % (time.time() - start))
|
|
|
|
|
|
|
|
start = time.time()
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
for i in range(len(rectangles)):
|
|
|
|
dc.SetPen( pens[i] )
|
|
|
|
dc.SetBrush( brushes[i] )
|
|
|
|
dc.DrawRectangle(rectangles[i][0],rectangles[i][1],rectangles[i][2],rectangles[i][3])
|
2003-12-09 01:23:28 +00:00
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
dc.EndDrawing()
|
|
|
|
log.write("DrawTime: %s seconds with Python loop\n" % (time.time() - start))
|
|
|
|
|
|
|
|
|
|
|
|
def TestPolygons(dc,log):
|
|
|
|
dc.BeginDrawing()
|
|
|
|
|
|
|
|
start = time.time()
|
2003-12-09 01:23:28 +00:00
|
|
|
dc.SetPen(wx.Pen("BLACK", 1))
|
2003-03-25 06:35:27 +00:00
|
|
|
dc.DrawPolygonList(polygons)
|
|
|
|
dc.DrawPolygonList(polygons,pens)
|
|
|
|
dc.DrawPolygonList(polygons,pens[0],brushes)
|
|
|
|
dc.DrawPolygonList(polygons,pens,brushes[0])
|
|
|
|
dc.DrawPolygonList(polygons,None,brushes)
|
|
|
|
log.write("DrawTime: %s seconds with DrawPolygonList\n" % (time.time() - start))
|
|
|
|
|
|
|
|
dc.EndDrawing()
|
|
|
|
|
|
|
|
|
|
|
|
def TestText(dc,log):
|
|
|
|
dc.BeginDrawing()
|
|
|
|
|
|
|
|
start = time.time()
|
|
|
|
|
|
|
|
# NOTE: you need to set BackgroundMode for the background colors to be used.
|
2003-12-09 01:23:28 +00:00
|
|
|
dc.SetBackgroundMode(wx.SOLID)
|
2003-03-25 06:35:27 +00:00
|
|
|
foreground = colors1
|
|
|
|
background = colors2
|
|
|
|
dc.DrawTextList(text, points, foreground, background)
|
|
|
|
|
|
|
|
log.write("DrawTime: %s seconds with DrawTextList\n" % (time.time() - start))
|
|
|
|
|
|
|
|
dc.EndDrawing()
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
class TestNB(wx.Notebook):
|
2003-03-25 06:35:27 +00:00
|
|
|
def __init__(self, parent, id, log):
|
2003-12-09 01:23:28 +00:00
|
|
|
style = wx.NB_BOTTOM
|
|
|
|
|
|
|
|
if wx.Platform == "__WXMAC__":
|
2003-03-25 06:35:27 +00:00
|
|
|
style = 0
|
2003-12-09 01:23:28 +00:00
|
|
|
|
|
|
|
wx.Notebook.__init__(self, parent, id, style=style)
|
2003-03-25 06:35:27 +00:00
|
|
|
self.log = log
|
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
# Initialize our various samples and add them to the notebook.
|
2003-03-25 06:35:27 +00:00
|
|
|
win = DrawPanel(self, TestEllipses, log)
|
|
|
|
self.AddPage(win, 'Ellipses')
|
|
|
|
|
|
|
|
win = DrawPanel(self, TestText, log)
|
|
|
|
self.AddPage(win, 'Text')
|
|
|
|
|
|
|
|
win = DrawPanel(self, TestPolygons, log)
|
|
|
|
self.AddPage(win, 'Polygons')
|
|
|
|
|
|
|
|
win = DrawPanel(self, TestPoints, log)
|
|
|
|
self.AddPage(win, 'Points')
|
|
|
|
|
|
|
|
win = DrawPanel(self, TestLines, log)
|
|
|
|
self.AddPage(win, 'Lines')
|
|
|
|
|
|
|
|
win = DrawPanel(self, TestRectangles, log)
|
|
|
|
self.AddPage(win, 'Rectangles')
|
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
# Class used for all the various sample pages; the mechanics are the same
|
|
|
|
# for each one with regards to the notebook. The only difference is
|
|
|
|
# the function we use to draw on it.
|
|
|
|
class DrawPanel(wx.Panel):
|
2003-03-25 06:35:27 +00:00
|
|
|
def __init__(self, parent, drawFun, log):
|
2003-12-09 01:23:28 +00:00
|
|
|
wx.Panel.__init__(self, parent, -1)
|
|
|
|
self.SetBackgroundColour(wx.WHITE)
|
2003-03-25 06:35:27 +00:00
|
|
|
|
|
|
|
self.log = log
|
|
|
|
self.drawFun = drawFun
|
2003-12-09 01:23:28 +00:00
|
|
|
self.Bind(wx.EVT_PAINT, self.OnPaint)
|
2003-03-25 06:35:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
def OnPaint(self, evt):
|
2003-12-09 01:23:28 +00:00
|
|
|
dc = wx.PaintDC(self)
|
2003-03-25 06:35:27 +00:00
|
|
|
dc.Clear()
|
|
|
|
self.drawFun(dc,self.log)
|
|
|
|
|
2001-10-16 19:06:09 +00:00
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
def runTest(frame, nb, log):
|
|
|
|
w = nb.GetClientSize().width
|
|
|
|
h = nb.GetClientSize().height
|
2003-03-25 06:35:27 +00:00
|
|
|
if w < 600: w = 600
|
|
|
|
if h < 400: h = 400
|
|
|
|
Init(w, h, 200)
|
|
|
|
win = TestNB(nb, -1, log)
|
2001-10-16 19:06:09 +00:00
|
|
|
return win
|
|
|
|
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
overview = """\
|
|
|
|
|
2003-12-09 01:23:28 +00:00
|
|
|
Some methods have been added to wx.DC to help with optimization of
|
2001-10-16 19:06:09 +00:00
|
|
|
drawing routines. Currently they are:
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
DrawPointList(sequence, pens=None)
|
|
|
|
</pre>
|
|
|
|
Where sequence is a tuple, list, whatever of 2 element tuples
|
|
|
|
(x, y) and pens is either None, a single pen or a list of pens.
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
DrawLineList(sequence, pens=None)
|
|
|
|
</pre>
|
|
|
|
Where sequence is a tuple, list, whatever of 4 element tuples
|
2003-10-02 00:58:06 +00:00
|
|
|
(x1,y1, x2,y2) and pens is either None, a single pen or a list
|
2001-10-16 19:06:09 +00:00
|
|
|
of pens.
|
|
|
|
|
2003-03-25 06:35:27 +00:00
|
|
|
<pre>
|
|
|
|
DrawRectangleList(rectangles, pens=None, brushes=None)
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
DrawEllipseList(ellipses, pens=None, brushes=None)
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
DrawPolygonList(polygons, pens=None, brushes=None)
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
DrawTextList(textList, coords, foregrounds = None, backgrounds = None)
|
|
|
|
</pre>
|
|
|
|
|
2001-10-16 19:06:09 +00:00
|
|
|
"""
|
2003-03-25 06:35:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys,os
|
|
|
|
import run
|
2004-03-05 00:06:33 +00:00
|
|
|
run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])
|
2003-03-25 06:35:27 +00:00
|
|
|
|