summaryrefslogtreecommitdiff
path: root/sleekxmpp/thirdparty
diff options
context:
space:
mode:
authorJean-Philippe Caruana <jp@barreverte.fr>2013-07-26 13:04:08 +0200
committerJean-Philippe Caruana <jp@barreverte.fr>2013-07-26 17:48:33 +0200
commit2c26fb0d76b550fddf64082c17de1054a7b23089 (patch)
treeb0ddc030975fcb1b6090924299243eaf3bb0d940 /sleekxmpp/thirdparty
parent18dde97c8cd377bbd2a1c9af816005b4ae473832 (diff)
downloadslixmpp-2c26fb0d76b550fddf64082c17de1054a7b23089.tar.gz
slixmpp-2c26fb0d76b550fddf64082c17de1054a7b23089.tar.bz2
slixmpp-2c26fb0d76b550fddf64082c17de1054a7b23089.tar.xz
slixmpp-2c26fb0d76b550fddf64082c17de1054a7b23089.zip
optimize imports
Diffstat (limited to 'sleekxmpp/thirdparty')
-rw-r--r--sleekxmpp/thirdparty/socks.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/sleekxmpp/thirdparty/socks.py b/sleekxmpp/thirdparty/socks.py
index a6c0d70e..9239a7b9 100644
--- a/sleekxmpp/thirdparty/socks.py
+++ b/sleekxmpp/thirdparty/socks.py
@@ -13,7 +13,7 @@ are permitted provided that the following conditions are met:
3. Neither the name of Dan Haim nor the names of his contributors may be used
to endorse or promote products derived from this software without specific
prior written permission.
-
+
THIS SOFTWARE IS PROVIDED BY DAN HAIM "AS IS" AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
@@ -28,9 +28,6 @@ OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMANGE.
This module provides a standard socket-like interface for Python
for tunneling connections through SOCKS proxies.
-"""
-
-"""
Minor modifications made by Christopher Gilbert (http://motomastyle.com/)
for use in PyLoris (http://pyloris.sourceforge.net/)
@@ -42,7 +39,6 @@ mainly to merge bug fixes found in Sourceforge
import socket
import struct
-import sys
PROXY_TYPE_SOCKS4 = 1
PROXY_TYPE_SOCKS5 = 2