Skip to content

Commit

Permalink
Remove unused import and functions.
Browse files Browse the repository at this point in the history
  • Loading branch information
lndbrg authored and bitprophet committed Dec 17, 2014
1 parent 522c480 commit 1970abb
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions paramiko/util.py
Expand Up @@ -23,7 +23,6 @@
from __future__ import generators

import array
from binascii import hexlify, unhexlify
import errno
import sys
import struct
Expand Down Expand Up @@ -106,14 +105,6 @@ def format_binary_line(data):
return '%-50s %s' % (left, right)


def hexify(s):
return hexlify(s).upper()


def unhexify(s):
return unhexlify(s)


def safe_string(s):
out = b('')
for c in s:
Expand Down

0 comments on commit 1970abb

Please sign in to comment.