Removed busy loop from hooke/plugin/flatfilts.py.
authorW. Trevor King <wking@drexel.edu>
Tue, 4 May 2010 07:16:05 +0000 (03:16 -0400)
committerW. Trevor King <wking@drexel.edu>
Tue, 4 May 2010 07:16:05 +0000 (03:16 -0400)
commitc1b9f2789b7f6ceb5a2cd14f03031c7d04b48f9e
tree6289034fdf673608689063b436522c7614a485bd
parent26e64b5961be3ea76eed0d5810a559a931eeb152
Removed busy loop from hooke/plugin/flatfilts.py.

Perhaps it was an attempt to pause briefly?  If so, time.sleep() would
be better.  It wasn't much of a pause though:
  $ time python -c ''
  real    0m0.111s
  user    0m0.089s
  sys     0m0.020s
  $ time python -c 'for i in range(1000): k=0'
  real    0m0.115s
  user    0m0.090s
  sys     0m0.024s
hooke/plugin/flatfilts.py