diff --git a/porting-code-to-python-3-with-2to3.html b/porting-code-to-python-3-with-2to3.html index 47c0236..e40ceea 100644 --- a/porting-code-to-python-3-with-2to3.html +++ b/porting-code-to-python-3-with-2to3.html @@ -651,7 +651,7 @@ reduce(a, b, c)
    -
  1. Remember, x can be anything — a class, a function, a module, a primitive data type, etc. The repr() function works on everything. +
  2. Remember, x can be anything — a class, a function, a module, a primitive data type, &c. The repr() function works on everything.
  3. In Python 2, backticks could be nested, leading to this sort of confusing (but valid) expression. The 2to3 tool is smart enough to convert this into nested calls to repr().