From 51706fccf9bf824cfa3724bbf40b1ba8444247e5 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Thu, 17 Sep 2009 18:12:24 -0400 Subject: [PATCH] fixed numbering --- advanced-iterators.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advanced-iterators.html b/advanced-iterators.html index e1d10d9..7815f6e 100755 --- a/advanced-iterators.html +++ b/advanced-iterators.html @@ -541,7 +541,7 @@ for guess in itertools.permutations(digits, len(characters)): NameError: name 'x' is not defined >>> eval("x * 5", {"x": x}, {}) >>> import math ->>> eval("math.sqrt(x)", {"x": x}, {}) +>>> eval("math.sqrt(x)", {"x": x}, {}) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "<string>", line 1, in <module>