We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 811af48 + a7eaf94 commit b2a3c9bCopy full SHA for b2a3c9b
.travis.yml
@@ -4,6 +4,7 @@ python:
4
- "3.4"
5
- "3.5"
6
- "3.6"
7
+ - "3.7"
8
9
install:
10
- pip install nose
pyre/pyre.py
@@ -228,7 +228,6 @@ def recent_events(self):
228
"""Iterator that yields recent `PyreEvent`s"""
229
while self.socket().get(zmq.EVENTS) & zmq.POLLIN:
230
yield PyreEvent(self)
231
- raise StopIteration()
232
233
def events(self):
234
"""Iterator that yields `PyreEvent`s indefinitely"""
0 commit comments