From 67e09ee75a68918b2544ba620f7aee86e4551a74 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Mon, 18 Aug 2008 07:48:49 +0200 Subject: [PATCH] test for 'print a,' --- tests/run/print.pyx | 3 +++ 1 file changed, 3 insertions(+) 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" -- 2.26.2