_core, _handshake: Remove unused imports

This commit is contained in:
Allan Lewis 2016-04-27 11:42:44 +01:00
parent 6d3c23e5da
commit c47b0af0ae
2 changed files with 0 additions and 7 deletions

View File

@ -30,19 +30,15 @@ if six.PY3:
else:
from base64 import encodestring as base64encode
import struct
import threading
# websocket modules
from ._exceptions import *
from ._abnf import *
from ._socket import *
from ._utils import *
from ._url import *
from ._logging import *
from ._http import *
from ._handshake import *
from ._ssl_compat import *
"""
websocket python client.

View File

@ -26,14 +26,11 @@ if six.PY3:
else:
from base64 import encodestring as base64encode
import uuid
import hashlib
import hmac
import os
import sys
from ._logging import *
from ._url import *
from ._socket import*
from ._http import *
from ._exceptions import *