summaryrefslogtreecommitdiffstats
path: root/Lib/email/parser.py
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2011-04-13 20:46:05 (GMT)
committerR David Murray <rdmurray@bitdance.com>2011-04-13 20:46:05 (GMT)
commitb35c850a3f7e2e6d470bb9543b9ba83aa33047f7 (patch)
tree9d7c221e58a8585d0721cc8498ef98d24c3dc269 /Lib/email/parser.py
parentf400ab40e4eb7dc6ad886920fb02ce4f7d1e929f (diff)
downloadcpython-b35c850a3f7e2e6d470bb9543b9ba83aa33047f7.zip
cpython-b35c850a3f7e2e6d470bb9543b9ba83aa33047f7.tar.gz
cpython-b35c850a3f7e2e6d470bb9543b9ba83aa33047f7.tar.bz2
#11684: Complete parser bytes interface by adding BytesHeaderParser
Patch by Steffen Daode Nurpmeso.
Diffstat (limited to 'Lib/email/parser.py')
-rw-r--r--Lib/email/parser.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/Lib/email/parser.py b/Lib/email/parser.py
index ef051fa..fc5090b 100644
--- a/Lib/email/parser.py
+++ b/Lib/email/parser.py
@@ -4,7 +4,7 @@
"""A parser of RFC 2822 and MIME email messages."""
-__all__ = ['Parser', 'HeaderParser']
+__all__ = ['Parser', 'HeaderParser', 'BytesParser', 'BytesHeaderParser']
import warnings
from io import StringIO, TextIOWrapper
@@ -114,3 +114,11 @@ class BytesParser:
"""
text = text.decode('ASCII', errors='surrogateescape')
return self.parser.parsestr(text, headersonly)
+
+
+class BytesHeaderParser(BytesParser):
+ def parse(self, fp, headersonly=True):
+ return BytesParser.parse(self, fp, headersonly=True)
+
+ def parsebytes(self, text, headersonly=True):
+ return BytesParser.parsebytes(self, text, headersonly=True)