Skip to content

Commit

Permalink
cleanup prior to review
Browse files Browse the repository at this point in the history
  • Loading branch information
minrk committed Oct 26, 2010
1 parent 4ccc62f commit 8c23382
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions zmq/eventloop/zmqstream.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
except ImportError:
from Queue import Queue

from zmq.utils.strtypes import bytes,unicode,basestring
from zmq.utils.strtypes import bytes, unicode, basestring


class ZMQStream(object):
Expand Down Expand Up @@ -66,7 +66,6 @@ class ZMQStream(object):
>>> stream.bind is stream.socket.bind
True
"""

socket = None
Expand Down
2 changes: 1 addition & 1 deletion zmq/utils/strtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@
bytes = str
basestring = basestring

__all__ = ['bytes', 'unicode', 'basestring']
__all__ = ['bytes', 'unicode', 'basestring']

0 comments on commit 8c23382

Please sign in to comment.