From 016d387625be48a7ff6c180bb2f318ee451d8c4e Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 16 May 2008 17:58:46 +0200 Subject: [PATCH] test fixes --- tests/run/r_starargs.pyx | 8 ++++---- tests/run/r_starargsonly.pyx | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/run/r_starargs.pyx b/tests/run/r_starargs.pyx index bf068076..03f08c59 100644 --- a/tests/run/r_starargs.pyx +++ b/tests/run/r_starargs.pyx @@ -31,8 +31,8 @@ __doc__ = u""" """ def swallow(name, airspeed, *args, **kwds): - print "Name:", name - print "Airspeed:", airspeed - print "Extra args:", args - print "Extra keywords:", kwds + print u"Name:", name + print u"Airspeed:", airspeed + print u"Extra args:", args + print u"Extra keywords:", kwds diff --git a/tests/run/r_starargsonly.pyx b/tests/run/r_starargsonly.pyx index 7b68f45f..a0fa25df 100644 --- a/tests/run/r_starargsonly.pyx +++ b/tests/run/r_starargsonly.pyx @@ -8,5 +8,5 @@ __doc__ = u""" """ def spam(*args): - print "Args:", args + print u"Args:", args -- 2.26.2