diff options
| author | Tim Peters <tim.peters@gmail.com> | 2002-07-16 21:35:23 (GMT) |
|---|---|---|
| committer | Tim Peters <tim.peters@gmail.com> | 2002-07-16 21:35:23 (GMT) |
| commit | c411dbaeee29dba87d5432a92fe76ea65d8e25f0 (patch) | |
| tree | 45b71b45b9b5c2f2ddc1b644166208cd041f076c /Lib/test/test_b1.py | |
| parent | 8531b1b28de5356f1154e13704d499121ea72af8 (diff) | |
| download | cpython-c411dbaeee29dba87d5432a92fe76ea65d8e25f0.zip cpython-c411dbaeee29dba87d5432a92fe76ea65d8e25f0.tar.gz cpython-c411dbaeee29dba87d5432a92fe76ea65d8e25f0.tar.bz2 | |
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_b1.py')
| -rw-r--r-- | Lib/test/test_b1.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_b1.py b/Lib/test/test_b1.py index afa0cf3..cd828b1 100644 --- a/Lib/test/test_b1.py +++ b/Lib/test/test_b1.py @@ -102,9 +102,9 @@ compile('print 1\n', '', 'exec') print 'complex' class OS: - def __complex__(self): return 1+10j + def __complex__(self): return 1+10j class NS(object): - def __complex__(self): return 1+10j + def __complex__(self): return 1+10j if complex(OS()) != 1+10j: raise TestFailed, '__complex__ in old style class' if complex(NS()) != 1+10j: raise TestFailed, '__complex__ in new style class' if complex("1+10j") != 1+10j: raise TestFailed, 'complex("1+10j")' |
