diff options
author | Christian Heimes <christian@cheimes.de> | 2013-10-13 00:00:09 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-10-13 00:00:09 (GMT) |
commit | ad9c9bb5a93fe922dd5768ab4e84eed96d72083c (patch) | |
tree | 430b9c5deb045de8cc20e78f5e3b3091e45aa862 /Lib/re.py | |
parent | 84fc7081f55f517062b35d0e0628cdfa4f1b9d55 (diff) | |
download | cpython-ad9c9bb5a93fe922dd5768ab4e84eed96d72083c.zip cpython-ad9c9bb5a93fe922dd5768ab4e84eed96d72083c.tar.gz cpython-ad9c9bb5a93fe922dd5768ab4e84eed96d72083c.tar.bz2 |
Remove import functools from re module. The re module imports functools but never uses it.
Diffstat (limited to 'Lib/re.py')
-rw-r--r-- | Lib/re.py | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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", |