Skip to content

Commit b2a3c9b

Browse files
authored
Merge pull request #127 from papr/master
Fix PEP 479/Python 3.7 incompatibility
2 parents 811af48 + a7eaf94 commit b2a3c9b

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ python:
44
- "3.4"
55
- "3.5"
66
- "3.6"
7+
- "3.7"
78

89
install:
910
- pip install nose

pyre/pyre.py

-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,6 @@ def recent_events(self):
228228
"""Iterator that yields recent `PyreEvent`s"""
229229
while self.socket().get(zmq.EVENTS) & zmq.POLLIN:
230230
yield PyreEvent(self)
231-
raise StopIteration()
232231

233232
def events(self):
234233
"""Iterator that yields `PyreEvent`s indefinitely"""

0 commit comments

Comments
 (0)