From: Stefan Behnel Date: Tue, 15 Jan 2008 22:16:42 +0000 (+0100) Subject: test cleanup X-Git-Tag: 0.9.6.14~47^2~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=dd94a21616b4bfa2b731ff6e4bf9dcc57c91dc09;p=cython.git test cleanup --- diff --git a/tests/run/kwonlyargs.pyx b/tests/run/kwonlyargs.pyx index 451e13dc..d18d1d7e 100644 --- a/tests/run/kwonlyargs.pyx +++ b/tests/run/kwonlyargs.pyx @@ -70,22 +70,22 @@ __doc__ = """ """ def b(a, b, c): - z = 22 + pass def c(a, b, c=1): - z = 33 + pass def d(a, b, *, c = 88): - z = 44 + pass def e(a, b, c = 88, **kwds): - z = 55 + pass def f(a, b, *, c, d = 42): - z = 66 + pass def g(a, b, *, c, d = 42, e = 17, f, **kwds): - z = 77 + pass def h(a, b, *args, c, d = 42, e = 17, f, **kwds): - z = 88 + pass