From 11901f0512d1f31070a2beb96323fb2084841f7a Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Thu, 15 Jan 2009 23:52:52 -0800 Subject: [PATCH] more complete #include test --- tests/run/includes/all.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.26.2