From f4eba3c25ef2d1b35f63a5af0bb34acccff5c560 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Fri, 17 Jul 2009 08:58:16 -0400 Subject: [PATCH] typo --- porting-code-to-python-3-with-2to3.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/porting-code-to-python-3-with-2to3.html b/porting-code-to-python-3-with-2to3.html index e86066c..682cfc7 100644 --- a/porting-code-to-python-3-with-2to3.html +++ b/porting-code-to-python-3-with-2to3.html @@ -560,7 +560,7 @@ for an_iterator in a_sequence_of_iterators: Python 3 reduce(a, b, c) -
from functtools import reduce
+
from functools import reduce
 reduce(a, b, c)