New submission from Éric Araujo <mer...@netwok.org>:

>>> import email.policy as p
>>> p.default
Policy()
>>> p.HTTP
Policy(["linesep='\\r\\n'", 'max_line_length=None'])

I think you wanted Policy(linesep='\r\n', max_line_length=None); the problem 
comes from __repr__ where a format field is replaced by a list, which should 
have been something ', '.join(args) instead.

I can commit this minor thing if you want, I just wanted to check if I was 
right first.

----------
components: Library (Lib)
messages: 156130
nosy: eric.araujo, r.david.murray
priority: low
severity: normal
status: open
title: repr of email policies is wrong
type: behavior
versions: Python 3.3

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue14344>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to