From: Barry Warsaw Date: Thu, 18 Jul 2002 21:29:17 +0000 (+0000) Subject: Anthony Baxter's patch to expose the parser's `strict' flag in these X-Git-Tag: v2.3c1~4945 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2d2fc229a05ae4bb65a8d0c1f7a588b73539d361;p=thirdparty%2FPython%2Fcpython.git Anthony Baxter's patch to expose the parser's `strict' flag in these convenience functions. Closes SF # 583188 (python project). --- diff --git a/Lib/email/__init__.py b/Lib/email/__init__.py index a82ef5776d82..1693c78a094a 100644 --- a/Lib/email/__init__.py +++ b/Lib/email/__init__.py @@ -4,7 +4,7 @@ """A package for parsing, handling, and generating email messages. """ -__version__ = '2.1' +__version__ = '2.2' __all__ = ['Charset', 'Encoders', @@ -32,8 +32,8 @@ __all__ = ['Charset', from email.Parser import Parser as _Parser from email.Message import Message as _Message -def message_from_string(s, _class=_Message): - return _Parser(_class).parsestr(s) +def message_from_string(s, _class=_Message, strict=1): + return _Parser(_class, strict=strict).parsestr(s) -def message_from_file(fp, _class=_Message): - return _Parser(_class).parse(fp) +def message_from_file(fp, _class=_Message, strict=1): + return _Parser(_class, strict=strict).parse(fp)