trailing-whitespace eradication, no functional changes

This commit is contained in:
Brian Warner 2007-11-01 15:25:20 -07:00
parent 5e974ede20
commit fb59627faa

View File

@ -45,7 +45,7 @@ def next_power_of_k(n, k):
return k**(x+1)
else:
return k**x
def ave(l):
return sum(l) / len(l)