From: Robert Bradshaw Date: Fri, 16 Jan 2009 07:52:52 +0000 (-0800) Subject: more complete #include test X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=11901f0512d1f31070a2beb96323fb2084841f7a;p=cython.git more complete #include test --- diff --git a/tests/run/includes/all.pyx b/tests/run/includes/all.pyx index 7aca44df..14f932da 100644 --- a/tests/run/includes/all.pyx +++ b/tests/run/includes/all.pyx @@ -13,10 +13,10 @@ from b cimport b cdef extern from "c.h": cdef int c -from indirect_d cimport d +cimport indirect_d cdef extern from "e.h": cdef int e def test(): - print a, b, c, d, e + print a, b, c, indirect_d.d, e