tonysimpson / nanomsg-python

nanomsg wrapper for python with multiple backends (CPython and ctypes) should support 2/3 and Pypy
MIT License
381 stars 85 forks source link

Wrong method for recv_fd property #12

Closed bitranch closed 10 years ago

bitranch commented 10 years ago

In nanomsg/init.py, line 219 ( https://github.com/tonysimpson/nanomsg-python/blob/master/nanomsg/__init__.py#L219 ), this code

recv_fd = property(_get_send_fd, doc='Receive file descripter')

should be:

recv_fd = property(_get_recv_fd, doc='Receive file descripter')
tonysimpson commented 10 years ago

Thanks for spotting this.