parent: remove unused imports

The stray functools import must have been there forever! Instant 4kb
knocked off wire footprint.
issue510
David Wilson 5 years ago
parent 5ef94eb3e2
commit 57b652eddc

@ -53,16 +53,6 @@ import zlib
# Absolute imports for <2.5.
select = __import__('select')
try:
from cStringIO import StringIO
except ImportError:
from io import StringIO
try:
from functools import lru_cache
except ImportError:
from mitogen.compat.functools import lru_cache
import mitogen.core
from mitogen.core import b
from mitogen.core import LOG

Loading…
Cancel
Save