Skip to content

Commit

Permalink
Merge pull request #127 from papr/master
Browse files Browse the repository at this point in the history
Fix PEP 479/Python 3.7 incompatibility
  • Loading branch information
keent authored Jul 28, 2018
2 parents 811af48 + a7eaf94 commit b2a3c9b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"

install:
- pip install nose
Expand Down
1 change: 0 additions & 1 deletion pyre/pyre.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,6 @@ def recent_events(self):
"""Iterator that yields recent `PyreEvent`s"""
while self.socket().get(zmq.EVENTS) & zmq.POLLIN:
yield PyreEvent(self)
raise StopIteration()

def events(self):
"""Iterator that yields `PyreEvent`s indefinitely"""
Expand Down

0 comments on commit b2a3c9b

Please sign in to comment.