diff options
author | Guido van Rossum <guido@python.org> | 2007-08-03 21:15:23 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-08-03 21:15:23 (GMT) |
commit | 4a7fd90d9c963581489215ff2ae0fc593cffc440 (patch) | |
tree | 05e09263009d78e277b21baf36c1aea0aac34e83 | |
parent | ec0c508b0ad5541a47eb77f4e7aa30a73596d681 (diff) | |
download | cpython-4a7fd90d9c963581489215ff2ae0fc593cffc440.zip cpython-4a7fd90d9c963581489215ff2ae0fc593cffc440.tar.gz cpython-4a7fd90d9c963581489215ff2ae0fc593cffc440.tar.bz2 |
Fix failure do to outlawing complex floordiv/mod.
-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 8daa1a3..74b4081 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): |