From 689f6281a1e356068eddc1363472aaca0e5559df Mon Sep 17 00:00:00 2001 From: Dag Sverre Seljebotn Date: Sat, 19 Jul 2008 23:05:39 +0200 Subject: [PATCH] Whoops. Checking in testcase to demonstrate error in previous commits. --- tests/run/cdefassign.pyx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/run/cdefassign.pyx b/tests/run/cdefassign.pyx index 79dc3453..3ac1795d 100644 --- a/tests/run/cdefassign.pyx +++ b/tests/run/cdefassign.pyx @@ -2,8 +2,13 @@ __doc__ = """ >>> test(1, 2) 4 1 2 2 0 + >>> A().value + 4 """ +cdef class A: + cdef int value = 4 + def test(x, int y): if True: before = 0 -- 2.26.2