From ad9c9bb5a93fe922dd5768ab4e84eed96d72083c Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Sun, 13 Oct 2013 02:00:09 +0200 Subject: [PATCH] Remove import functools from re module. The re module imports functools but never uses it. --- Lib/re.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/re.py b/Lib/re.py index fcea190d337..b41aab0bafd 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",