diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-06-29 05:46:54 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-06-29 05:46:54 +0000 |
commit | 478c10554b366989b341af4017602571edfe9b2e (patch) | |
tree | d4f32db5aa64d5903682d8f8d36a29ffeb48af6f /Lib/test/test_bool.py | |
parent | db3756dade0bba030946abcb8e50c914af84f31e (diff) | |
download | cpython-git-478c10554b366989b341af4017602571edfe9b2e.tar.gz |
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_bool.py')
-rw-r--r-- | Lib/test/test_bool.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_bool.py b/Lib/test/test_bool.py index f2a4322695..33185a05d4 100644 --- a/Lib/test/test_bool.py +++ b/Lib/test/test_bool.py @@ -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) |