Skip to content

Commit a7eaf94

Browse files
committed
Fix PEP 479/Python 3.7 incompatibility
Fixes #126 Adds 3.7 as travis testing target
1 parent 0fd3d16 commit a7eaf94

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
@@ -5,6 +5,7 @@ python:
55
- "3.4"
66
- "3.5"
77
- "3.6"
8+
- "3.7"
89

910
matrix:
1011
include:

pyre/pyre.py

-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,6 @@ def recent_events(self):
223223
"""Iterator that yields recent `PyreEvent`s"""
224224
while self.socket().get(zmq.EVENTS) & zmq.POLLIN:
225225
yield PyreEvent(self)
226-
raise StopIteration()
227226

228227
def events(self):
229228
"""Iterator that yields `PyreEvent`s indefinitely"""

0 commit comments

Comments
 (0)