Properly close a temporary TextIOWrapper in 'email'.

This commit is contained in:
Brett Cannon 2010-10-29 23:08:13 +00:00
parent c0eee315f5
commit 06407b35b1
1 changed files with 2 additions and 1 deletions

View File

@ -120,7 +120,8 @@ class BytesParser:
meaning it parses the entire contents of the file.
"""
fp = TextIOWrapper(fp, encoding='ascii', errors='surrogateescape')
return self.parser.parse(fp, headersonly)
with fp:
return self.parser.parse(fp, headersonly)
def parsebytes(self, text, headersonly=False):