Remove trailing whitespace.
[cython.git] / tests / compile / cargdef.pyx
index c5da39bbe54e1fbb0d1d97f90442cb2ce559df58..58421cb8921dee8043242b5e6122c13e8a462efa 100644 (file)
@@ -1,10 +1,10 @@
 def f(obj, int i, float f, char *s1, char s2[]):
     pass
-    
+
 cdef g(obj, int i, float f, char *s1, char s2[]):
     pass
-    
+
 cdef do_g(object (*func)(object, int, float, char*, char*)):
     return func(1, 2, 3.14159, "a", "b")
-    
+
 do_g(&g)