From: Stefan Behnel Date: Mon, 18 Aug 2008 05:48:49 +0000 (+0200) Subject: test for 'print a,' X-Git-Tag: 0.9.8.1~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=67e09ee75a68918b2544ba620f7aee86e4551a74;p=cython.git test for 'print a,' --- diff --git a/tests/run/print.pyx b/tests/run/print.pyx index 9937dc3e..590581b8 100644 --- a/tests/run/print.pyx +++ b/tests/run/print.pyx @@ -3,12 +3,15 @@ __doc__ = u""" 1 1 test + 1 test 1 test 42 spam """ def f(a, b): print print a + print a, + print b print a, b print a, b, print 42, u"spam"