From db78e5242f12f5c29ee7d7a46c09ce68aa0f0f1a Mon Sep 17 00:00:00 2001 From: Haoyu Bai Date: Fri, 10 Jul 2009 16:51:16 +0000 Subject: [PATCH] fix iterator test case by normolize doctests spaces [SVN r54864] --- test/iterator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/iterator.py b/test/iterator.py index 3cc641e6..96f5fd04 100644 --- a/test/iterator.py +++ b/test/iterator.py @@ -53,7 +53,7 @@ >>> ll.push_back(x) >>> x.push_back(7) >>> ll.push_back(x) ->>> for a in ll: +>>> for a in ll: #doctest: +NORMALIZE_WHITESPACE ... for b in a: ... print b, ... print