From c6bb65197f96979168dd3da2a24b3038a9fc64ba Mon Sep 17 00:00:00 2001 From: Haoyu Bai Date: Thu, 9 Jul 2009 17:50:11 +0000 Subject: [PATCH] fix tuple test case by indicate doctests to ignore spaces [SVN r54838] --- test/tuple.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tuple.py b/test/tuple.py index 065b20ac..9d25aef4 100644 --- a/test/tuple.py +++ b/test/tuple.py @@ -11,7 +11,7 @@ ('t', 'h', 'i', 's', ' ', 'i', 's', ' ', 'a', ' ', 't', 'e', 's', 't', ' ', 's', 't', 'r', 'i', 'n', 'g') >>> t1 = convert_to_tuple("this is") >>> t2 = (1,2,3,4) ->>> test_operators(t1,t2,printer) +>>> test_operators(t1,t2,printer) #doctest: +NORMALIZE_WHITESPACE ('t', 'h', 'i', 's', ' ', 'i', 's', 1, 2, 3, 4) >>> make_tuple() ()