Fix failure do to outlawing complex floordiv/mod.
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 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):