summaryrefslogtreecommitdiffstats
path: root/Lib/email/parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/email/parser.py')
-rw-r--r--Lib/email/parser.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/email/parser.py b/Lib/email/parser.py
index e94d455..06d99b1 100644
--- a/Lib/email/parser.py
+++ b/Lib/email/parser.py
@@ -64,7 +64,6 @@ class Parser:
return self.parse(StringIO(text), headersonly=headersonly)
-
class HeaderParser(Parser):
def parse(self, fp, headersonly=True):
return Parser.parse(self, fp, True)
@@ -72,7 +71,7 @@ class HeaderParser(Parser):
def parsestr(self, text, headersonly=True):
return Parser.parsestr(self, text, True)
-
+
class BytesParser:
def __init__(self, *args, **kw):