summaryrefslogtreecommitdiff
path: root/xdelta3/junk.py
blob: 384951e1d8ad6d6367e2f119969cfbffe2617141 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python

bytes = ''

for x in range(0, 250):
  bytes = bytes + ('%c%c%c%c=' % (x, x+1, x+2, x+3))

for x in range(0, 250):
  bytes = bytes + ('%c' % x)
  
print bytes