From 59fb24420d347a4b999071c30932ce91f3c44739 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Thu, 29 Jan 2009 01:05:52 -0500 Subject: [PATCH] fixed validation errors --- porting-code-to-python-3-with-2to3.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/porting-code-to-python-3-with-2to3.html b/porting-code-to-python-3-with-2to3.html index 2635c62..143a245 100644 --- a/porting-code-to-python-3-with-2to3.html +++ b/porting-code-to-python-3-with-2to3.html @@ -186,12 +186,12 @@ for (var i = arTables.length - 1; i >= 0; i--) { ① -if x <> y: +if x <> y: if x != y: ② -if x <> y <> z: +if x <> y <> z: if x != y != z: @@ -311,7 +311,7 @@ for (var i = arTables.length - 1; i >= 0; i--) {

http package

-In Python 3, several related HTTP modules have been combined into a single package, http.

+

In Python 3, several related HTTP modules have been combined into a single package, http.

@@ -703,7 +703,7 @@ except ImportError: +reduce(a, b, c)
reduce(a, b, c)
from functtools import reduce
-reduce(a, b, c)