summaryrefslogtreecommitdiff
path: root/Lib/asyncio/events.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-02-20 10:37:27 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-02-20 10:37:27 +0100
commitb4c9388947b2c93e3ba7d85e828d8667551a71f6 (patch)
tree1e629ecdacf4bc611bfad96ae5bbe35b7107229b /Lib/asyncio/events.py
parent6f24d83ac68fdea3a28cee64d631d7701cf102ae (diff)
downloadcpython-git-b4c9388947b2c93e3ba7d85e828d8667551a71f6.tar.gz
asyncio: remove unused imports and unused variables noticed by pyflakes
Diffstat (limited to 'Lib/asyncio/events.py')
-rw-r--r--Lib/asyncio/events.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/asyncio/events.py b/Lib/asyncio/events.py
index 5362f05647..57af68afb6 100644
--- a/Lib/asyncio/events.py
+++ b/Lib/asyncio/events.py
@@ -9,12 +9,9 @@ __all__ = ['AbstractEventLoopPolicy',
]
import subprocess
-import sys
import threading
import socket
-from .log import logger
-
class Handle:
"""Object returned by callback registration methods."""