Whitespace normalization.

This commit is contained in:
Tim Peters 2003-06-29 05:46:54 +00:00
parent db3756dade
commit 478c10554b
5 changed files with 8 additions and 8 deletions

View file

@ -329,17 +329,17 @@ class BoolTest(unittest.TestCase):
def __nonzero__(self):
return self
check(Foo())
class Bar(object):
def __nonzero__(self):
return "Yes"
check(Bar())
class Baz(int):
def __nonzero__(self):
return self
check(Baz())
def test_main():
test_support.run_unittest(BoolTest)