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)