Remove import functools from re module. The re module imports functools but never uses it.

This commit is contained in:
Christian Heimes 2013-10-13 02:00:09 +02:00
parent 84fc7081f5
commit ad9c9bb5a9

View file

@ -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",