[issue26176] EmailMessage example doesn't work

2016-07-10 Thread R. David Murray
R. David Murray added the comment: Thanks, Nathan. -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker

[issue26176] EmailMessage example doesn't work

2016-07-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1530fd9a7089 by R David Murray in branch '3.5': #26176: fix usage of Address constructor in email examples. https://hg.python.org/cpython/rev/1530fd9a7089 New changeset a9c11fecd83b by R David Murray in branch 'default': Merge: #26176: fix usage of

[issue26176] EmailMessage example doesn't work

2016-05-31 Thread R. David Murray
Changes by R. David Murray : -- stage: needs patch -> commit review ___ Python tracker ___

[issue26176] EmailMessage example doesn't work

2016-05-31 Thread R. David Murray
R. David Murray added the comment: Thank you for the patch. I blame the mistake on too great a familiarity with the old API :) -- nosy: +r.david.murray ___ Python tracker

[issue26176] EmailMessage example doesn't work

2016-05-31 Thread Nathan Harold
Nathan Harold added the comment: emailexample.patch fixes the specific issue mentioned in #26426: the Address constructor is now used as documented. It changes the final output of the two combined examples (as presented in the documentation) accordingly. In general it seems as though these

[issue26176] EmailMessage example doesn't work

2016-03-13 Thread Ezio Melotti
Ezio Melotti added the comment: #26426 has been marked as duplicate of this, and contains more information about the error. -- nosy: +ezio.melotti stage: -> needs patch versions: +Python 3.5, Python 3.6 -Python 3.4 ___ Python tracker

[issue26176] EmailMessage example doesn't work

2016-03-12 Thread Julien
Julien added the comment: Is this your bug: Traceback (most recent call last): File "/tmp/email_example.py", line 9, in with open(textfile) as fp: NameError: name 'textfile' is not defined ? If not, can you please provide us the full traceback ? -- nosy: +sizeof

[issue26176] EmailMessage example doesn't work

2016-03-12 Thread HyeSoo Park
HyeSoo Park added the comment: Could you please specify which example of the Provisional API among 2 examples of the documentation and how does it not work? Thank you -- nosy: +flyjwayur ___ Python tracker

[issue26176] EmailMessage example doesn't work

2016-02-29 Thread Maciej Szulik
Changes by Maciej Szulik : -- nosy: +maciej.szulik ___ Python tracker ___ ___

[issue26176] EmailMessage example doesn't work

2016-02-24 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- nosy: +barry ___ Python tracker ___ ___ Python-bugs-list

[issue26176] EmailMessage example doesn't work

2016-01-21 Thread Srujan Chaitanya
New submission from Srujan Chaitanya: Example provided in 19.1.14.1. Examples using the Provisional API at https://docs.python.org/3.4/library/email-examples.html?highlight=email%20example Doesn't work. This could be a EmailMessage class issue also? -- assignee: docs@python