Commit 45d6ef79 authored by Guido van Rossum's avatar Guido van Rossum

Fix failure do to outlawing complex floordiv/mod.

parent df1b5595
......@@ -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):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment