Use cython.long instead of long in python mode
authorMark Florisson <markflorisson88@gmail.com>
Sun, 4 Nov 2012 13:40:33 +0000 (13:40 +0000)
committerMark Florisson <markflorisson88@gmail.com>
Sun, 4 Nov 2012 17:16:55 +0000 (17:16 +0000)
tests/run/fused_def.pyx

index 145f063..4f384f8 100644 (file)
@@ -48,7 +48,7 @@ def opt_func(fused_t obj, cython.floating myf = 1.2, cython.integral myi = 7):
     >>> opt_func[str, float, int]("spam", f, i)
     str object float int
     spam 5.60 9 5.60 9
-    >>> opt_func[str, cy.double, long]("spam", f, i)
+    >>> opt_func[str, cy.double, cy.long]("spam", f, i)
     str object double long
     spam 5.60 9 5.60 9
     >>> opt_func[str, float, cy.int]("spam", f, i)
@@ -62,7 +62,7 @@ def opt_func(fused_t obj, cython.floating myf = 1.2, cython.integral myi = 7):
     >>> opt_func[ExtClassA, float, int](ExtClassA(), f, i)
     ExtClassA float int
     ExtClassA 5.60 9 5.60 9
-    >>> opt_func[ExtClassA, cy.double, long](ExtClassA(), f, i)
+    >>> opt_func[ExtClassA, cy.double, cy.long](ExtClassA(), f, i)
     ExtClassA double long
     ExtClassA 5.60 9 5.60 9