summaryrefslogtreecommitdiff
path: root/Lib/asynchat.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-03-20 09:16:38 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-03-20 09:16:38 +0100
commit6d60a188ebe41a391cc562ec0084e8a73f7400aa (patch)
treef347ffa2323185aa095eb5ac86d7b0c252635010 /Lib/asynchat.py
parent1578d17dc0ad7a0179045aefeb2dfd8c67b3720b (diff)
downloadcpython-6d60a188ebe41a391cc562ec0084e8a73f7400aa.tar.gz
Issue #20976: pyflakes: Remove unused imports
Diffstat (limited to 'Lib/asynchat.py')
-rw-r--r--Lib/asynchat.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/asynchat.py b/Lib/asynchat.py
index 0378fa7069..f1a5731bae 100644
--- a/Lib/asynchat.py
+++ b/Lib/asynchat.py
@@ -45,7 +45,6 @@ command will be accumulated (using your own 'collect_incoming_data'
method) up to the terminator, and then control will be returned to
you - by calling your self.found_terminator() method.
"""
-import socket
import asyncore
from collections import deque