Skip to content

Commit

Permalink
Update to version 0.3.2
Browse files Browse the repository at this point in the history
* Fix raise of a UnboundLocalError instead of a socket.error in _process_incoming_message
* Fix call to next method on iterator: In python3 iterator g.next() method is renamed to g.__next__()
  using next(g) works in python 2 and 3
  • Loading branch information
nitmir committed Mar 3, 2018
1 parent a27c7f5 commit 3c15bce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
except ImportError:
has_cython = False

VERSION = "0.3.1"
VERSION = "0.3.2"

if __name__ == "__main__":
c_extensions = [
Expand Down

0 comments on commit 3c15bce

Please sign in to comment.