X Tutup
Skip to content

Commit 2d93407

Browse files
committed
Reverse a change in which bob found a bug
1 parent 75291d7 commit 2d93407

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/repl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ def __nonzero__(self):
230230
return self.index != -1
231231

232232
def __iter__(self):
233-
yield self
233+
return self
234234

235235
def current(self):
236236
if self.index == -1:

0 commit comments

Comments
 (0)
X Tutup