commit | 0db85e5d46d0c0e57377c0bdbfdccb91eb36ec64 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Mon Aug 02 23:30:09 2010 +0000 |
committer | Georg Brandl <georg@python.org> | Mon Aug 02 23:30:09 2010 +0000 |
tree | db1be0ea08df48f2b46af255e528bed14f2964d3 | |
parent | 36f72d339698b651b944fc1ed227a57ecc81bd5e [diff] [blame] |
Fix-up some tkinter demos.
diff --git a/Demo/tkinter/guido/brownian2.py b/Demo/tkinter/guido/brownian2.py index dc1d43a..3adcd68 100644 --- a/Demo/tkinter/guido/brownian2.py +++ b/Demo/tkinter/guido/brownian2.py
@@ -32,7 +32,7 @@ yield None def move(particle): # move the particle at random time - particle.next() + next(particle) dt = random.expovariate(LAMBDA) root.after(int(dt*1000), move, particle)