[issue12283] python3.2 smtplib _quote_periods

2011-06-09 Thread R. David Murray
R. David Murray added the comment: Thanks for the report. I broke that when I refactored the code, and unfortunately there was no existing test that tested dot quoting. There is now. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed __

[issue12283] python3.2 smtplib _quote_periods

2011-06-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 077b016e4a6d by R David Murray in branch '3.2': #12283: Fixed regression in smtplib quoting of leading dots in DATA. http://hg.python.org/cpython/rev/077b016e4a6d New changeset cedceeb45030 by R David Murray in branch 'default': merge #12283: Fixed

[issue12283] python3.2 smtplib _quote_periods

2011-06-08 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- components: +Library (Lib) -Extension Modules nosy: +r.david.murray stage: -> patch review type: -> behavior versions: +Python 3.3 ___ Python tracker ___

[issue12283] python3.2 smtplib _quote_periods

2011-06-08 Thread DDarko
New submission from DDarko : File "/usr/lib/python3.2/smtplib.py", line 166, in _quote_periods def _quote_periods(bindata): return re.sub(br'(?m)^\.', '..', bindata) should be: return re.sub(br'(?m)^\.', b'..', bindata) -- components: Extension Modules messages: 137899 nosy: DDarko