Whitespace normalization, via reindent.py.

This commit is contained in:
Tim Peters 2004-07-18 06:16:08 +00:00
parent e6ddc8b20b
commit 182b5aca27
453 changed files with 31318 additions and 31452 deletions

View file

@ -1,16 +1,16 @@
import W
def twothird(width, height):
return (8, 8, width - 8, 2*height/3 - 4)
return (8, 8, width - 8, 2*height/3 - 4)
def onethird(width, height):
return (8, 2*height/3 + 4, width - 8, height - 22)
return (8, 2*height/3 + 4, width - 8, height - 22)
def halfbounds1(width, height):
return (0, 0, width/2 - 4, height)
return (0, 0, width/2 - 4, height)
def halfbounds2(width, height):
return (width/2 + 4, 0, width, height)
return (width/2 + 4, 0, width, height)
window = W.Window((400, 400), "Sizable window with two lists", minsize = (200, 200))