From e4cafd26fa19c1684837819f393e34ed42e40187 Mon Sep 17 00:00:00 2001 From: fijal <> Date: Tue, 4 Aug 2020 16:53:05 +0000 Subject: [PATCH] Make it less magic [Imported from Trac: page Python3, version 12] --- Python3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python3.md b/Python3.md index 4c5f9f3..35913da 100644 --- a/Python3.md +++ b/Python3.md @@ -58,7 +58,7 @@ And replace the `from builtins import *` variant, if any, with: ```#!python from future.utils import PY2 if PY2: - from builtins import filter, map, zip, ascii, chr, hex, input, next, oct, open, pow, round, super, bytes, dict, int, list, object, range, str, max, min # noqa: F401 + from future.builtins import filter, map, zip, ascii, chr, hex, input, next, oct, open, pow, round, super, bytes, dict, int, list, object, range, str, max, min # noqa: F401 ``` ### When things get complicated