Whitespace normalization.

This commit is contained in:
Tim Peters 2006-11-03 02:32:46 +00:00
parent be1bc3b63a
commit abd8a336a3
12 changed files with 21 additions and 21 deletions

View file

@ -8,7 +8,7 @@ warnings.filterwarnings("ignore", r"import \*", SyntaxWarning, "<string>")
class ScopeTests(unittest.TestCase):
def testSimpleNesting(self):
def make_adder(x):
def adder(y):
return x + y