From a3d9440ade6450ec98f78fcf6bb78b0b6ba510c8 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Thu, 24 Oct 2013 21:34:10 -0700 Subject: [PATCH] Disable broken cimport alias test by defualt. --- tests/bugs.txt | 1 + tests/run/cimport_alias_subclass.pyx | 3 +++ 2 files changed, 4 insertions(+) diff --git a/tests/bugs.txt b/tests/bugs.txt index dd84610..1f84f5d 100644 --- a/tests/bugs.txt +++ b/tests/bugs.txt @@ -13,6 +13,7 @@ for_from_pyvar_loop_T601 temp_sideeffects_T654 # not really a bug, Cython warns about it inherited_final_method tryfinallychaining # also see FIXME in "yield_from_pep380" test +cimport_alias_subclass # CPython regression tests that don't current work: pyregr.test_signal diff --git a/tests/run/cimport_alias_subclass.pyx b/tests/run/cimport_alias_subclass.pyx index afb30eb..0c399ef 100644 --- a/tests/run/cimport_alias_subclass.pyx +++ b/tests/run/cimport_alias_subclass.pyx @@ -1,3 +1,6 @@ +# mode: compile + + cimport cimport_alias_subclass_helper as cash cdef class Derived(cash.Base): -- 2.7.4