From a099a712abb2f0d93f95083243a022aee874bc15 Mon Sep 17 00:00:00 2001 From: Mark Pilgrim Date: Sat, 26 Sep 2009 00:15:04 -0400 Subject: [PATCH] etc fiddling --- porting-code-to-python-3-with-2to3.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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().