summaryrefslogtreecommitdiff
path: root/Lib/mailbox.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2014-11-22 22:14:41 -0800
committerRaymond Hettinger <python@rcn.com>2014-11-22 22:14:41 -0800
commitbb6c0aaebfbeb9ab13886e261df904c9c12853b9 (patch)
treeaa283779a1ce070feb4c59a8c5cf624d3830059c /Lib/mailbox.py
parent828d932a2c4da5eb7c05e85dfe51f5f6db68084d (diff)
downloadcpython-git-bb6c0aaebfbeb9ab13886e261df904c9c12853b9.tar.gz
PEP 479: Use the return-keyword instead of raising StopIteration inside a generators.
Diffstat (limited to 'Lib/mailbox.py')
-rw-r--r--Lib/mailbox.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/mailbox.py b/Lib/mailbox.py
index 145b2040c9..e7f31df1e5 100644
--- a/Lib/mailbox.py
+++ b/Lib/mailbox.py
@@ -1949,7 +1949,7 @@ class _ProxyFile:
while True:
line = self.readline()
if not line:
- raise StopIteration
+ return
yield line
def tell(self):