From 4a7fd90d9c963581489215ff2ae0fc593cffc440 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 3 Aug 2007 21:15:23 +0000 Subject: Fix failure do to outlawing complex floordiv/mod. --- Lib/test/test_descr.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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): -- cgit v0.12