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:
@@ -311,7 +311,7 @@ for (var i = arTables.length - 1; i >= 0; i--) {
②
-
+if x <> y <> z:if x <> y <> z:if x != y != z:
-In Python 3, several related HTTP modules have been combined into a single package, http packagehttp.
In Python 3, several related HTTP modules have been combined into a single package, http.
| ① | reduce(a, b, c) |
|
+reduce(a, b, c)
|---|