From: Christian Heimes Date: Sun, 13 Oct 2013 00:00:09 +0000 (+0200) Subject: Remove import functools from re module. The re module imports functools but never... X-Git-Tag: v3.4.0a4~151 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ad9c9bb5a93fe922dd5768ab4e84eed96d72083c;p=python Remove import functools from re module. The re module imports functools but never uses it. --- diff --git a/Lib/re.py b/Lib/re.py index fcea190d33..b41aab0baf 100644 --- a/Lib/re.py +++ b/Lib/re.py @@ -121,7 +121,6 @@ This module also defines an exception 'error'. import sys import sre_compile import sre_parse -import functools # public symbols __all__ = [ "match", "search", "sub", "subn", "split", "findall",