diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index 8daa1a3efa0..74b4081f835 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):