From 57eefc3ca14d9fd613bd5bdfb6a77a72c7055287 Mon Sep 17 00:00:00 2001 From: Stefan Behnel <scoder@users.berlios.de> Date: Fri, 14 Oct 2011 21:31:10 +0200 Subject: [PATCH] extended test case --- tests/run/final_method_T586.pyx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/run/final_method_T586.pyx b/tests/run/final_method_T586.pyx index 686719160..fdf6aae60 100644 --- a/tests/run/final_method_T586.pyx +++ b/tests/run/final_method_T586.pyx @@ -29,6 +29,14 @@ cdef class FinalType(object): self.cpdef_method() +def test_external_call(): + """ + >>> test_external_call() + """ + f = FinalType() + return f.cpdef_method() + + cdef class BaseTypeWithFinalMethods(object): """ >>> obj = BaseTypeWithFinalMethods() -- 2.30.9