summaryrefslogtreecommitdiffstats
path: root/Lib/email/policy.py
blob: dae2dc7d3176f6d2ba3823b9d47f4969d42567e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"""This will be the home for the policy that hooks in the new
code that adds all the email6 features.
"""

from email._policybase import Policy, compat32, Compat32

# XXX: temporarily derive everything from compat32.

default = compat32
strict = default.clone(raise_on_defect=True)
SMTP = default.clone(linesep='\r\n')
HTTP = default.clone(linesep='\r\n', max_line_length=None)