diff options
| author | Guido van Rossum <guido@python.org> | 2007-08-03 21:15:23 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 2007-08-03 21:15:23 +0000 |
| commit | 4a7fd90d9c963581489215ff2ae0fc593cffc440 (patch) | |
| tree | 05e09263009d78e277b21baf36c1aea0aac34e83 /Lib/test/test_descr.py | |
| parent | ec0c508b0ad5541a47eb77f4e7aa30a73596d681 (diff) | |
| download | cpython-git-4a7fd90d9c963581489215ff2ae0fc593cffc440.tar.gz | |
Fix failure do to outlawing complex floordiv/mod.
Diffstat (limited to 'Lib/test/test_descr.py')
| -rw-r--r-- | Lib/test/test_descr.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index 8daa1a3efa..74b4081f83 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -442,7 +442,9 @@ def floats(): def complexes(): if verbose: print("Testing complex operations...") - numops(100.0j, 3.0j, skip=['lt', 'le', 'gt', 'ge', 'int', 'long', 'float']) + numops(100.0j, 3.0j, + skip=['lt', 'le', 'gt', 'ge', 'int', 'long', 'float', + 'divmod', 'mod']) class Number(complex): __slots__ = ['prec'] def __new__(cls, *args, **kwds): |
