File: sugar-backup

package info (click to toggle)
sugar 0.82.9-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 3,168 kB
  • ctags: 2,468
  • sloc: python: 13,868; sh: 709; makefile: 258
file content (11 lines) | stat: -rw-r--r-- 156 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python

import sys
import time

i = 0
while i <= 100:
    time.sleep(0.5)
    sys.stdout.write('%d\n' % i)
    sys.stdout.flush()
    i += 5