From d10b5e8d1a2e70e46b5f3de8aab4481850b01992 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Thu, 12 Jan 2006 17:49:48 +0000 Subject: [PATCH] Python 2.2 compatibility [SVN r32295] --- test/stl_iterator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/stl_iterator.py b/test/stl_iterator.py index 64edd8d1..c044e85a 100644 --- a/test/stl_iterator.py +++ b/test/stl_iterator.py @@ -4,7 +4,7 @@ ''' >>> from stl_iterator_ext import * >>> x = list_int() ->>> x.assign([1,2,3,4,5]) +>>> x.assign(iter([1,2,3,4,5])) >>> for y in x: ... print y 1