Skip to content

Commit

Permalink
turned Socket.rcvmore method into a function for compliance with pyzmq
Browse files Browse the repository at this point in the history
  • Loading branch information
Stepan Kornyakov committed Dec 28, 2011
1 parent 820c938 commit 11ad193
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -32,7 +32,7 @@

setup(
name = "pyzmq-ctypes",
version = "2.1.3",
version = "2.1.4",
packages = ['zmq', 'zmq.core'],
author = "Daniel Holth",
author_email = "dholth@fastmail.fm",
Expand Down
1 change: 1 addition & 0 deletions zmq/_zmq.py
Expand Up @@ -309,6 +309,7 @@ def connect(self, addr):
raise TypeError('expected str, got: %r' % addr)
zmq_connect(self.handle, addr)

@property
def rcvmore(self):
"""s.rcvmore()
Expand Down

0 comments on commit 11ad193

Please sign in to comment.