[issue2622] Import errors in email.message.py

2009-07-16 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: applied with r37952 (trunk), r37953 (2.6) and r37978 (py3k, docstrings only). Thanks for the patch! -- resolution: accepted - fixed status: open - closed ___ Python tracker

[issue2622] Import errors in email.message.py

2009-06-24 Thread Barry A. Warsaw
Barry A. Warsaw ba...@python.org added the comment: Looks good; feel free to commit. -- versions: -Python 2.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2622 ___

[issue2622] Import errors in email.message.py

2009-06-23 Thread Barry A. Warsaw
Barry A. Warsaw ba...@python.org added the comment: The patch looks pretty good, except that you should not change test_email.py. It specifically tests the old names, while test_email_renamed.py tests the new names. There's no point in fixing Python 2.5 since there won't be another maintenance

[issue2622] Import errors in email.message.py

2009-06-23 Thread Mads Kiilerich
Mads Kiilerich m...@kiilerich.com added the comment: I have updated the patch. (Applied to 2.6 where it seems like some casings had been fixed, so I dropped all the rejects. Changes to test_email.py has been.) -- Added file: http://bugs.python.org/file14352/emailcasings2.patch

[issue2622] Import errors in email.message.py

2009-06-16 Thread John Jackson
John Jackson johnjack...@pobox.com added the comment: Also occurs in 2.6... -- versions: +Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2622 ___

[issue2622] Import errors in email.message.py

2009-05-12 Thread Zach Hirsch
Zach Hirsch zhir...@umich.edu added the comment: I'm not sure if this is the same problem, but it seems related. I can get the same ImportError without involving py2exe or modulefinder: Python 2.5.4 (r254:67916, Feb 18 2009, 03:00:47) [GCC 4.3.3] on linux2 Type help, copyright, credits or

[issue2622] Import errors in email.message.py

2008-04-26 Thread Mads Kiilerich
Mads Kiilerich [EMAIL PROTECTED] added the comment: Testing that email.message doesn't use the wrong casing email.Generator isn't enough. That would just test that this patch has been applied. It must also be tested that no other modules uses the wrong casing of email.Generator. Or other email

[issue2622] Import errors in email.message.py

2008-04-25 Thread Mads Kiilerich
Mads Kiilerich [EMAIL PROTECTED] added the comment: AFA I understand it the ImportError comes when running a py2exe/app'ed package where iterators.py hasn't been included. I was just about to file a report about (I think) the same issue, seen on XP when py2exe'ing code using the email module.

[issue2622] Import errors in email.message.py

2008-04-25 Thread Mads Kiilerich
Mads Kiilerich [EMAIL PROTECTED] added the comment: This patch seems to fix the issue for me. The easiest way to verify might be to create another patch and compare them... -- keywords: +patch Added file: http://bugs.python.org/file10106/emailcasings.patch

[issue2622] Import errors in email.message.py

2008-04-25 Thread Barry A. Warsaw
Barry A. Warsaw [EMAIL PROTECTED] added the comment: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Apr 25, 2008, at 10:44 AM, Mads Kiilerich wrote: Mads Kiilerich [EMAIL PROTECTED] added the comment: This patch seems to fix the issue for me. The easiest way to verify might be to

[issue2622] Import errors in email.message.py

2008-04-25 Thread Mads Kiilerich
Mads Kiilerich [EMAIL PROTECTED] added the comment: OK. I had assumed that backward compatibility was tested in the _renamed tests, so that these tests one day could be dropped together with backward compatibility. I didn't notice that my search'n'replaces showed me that I was wrong. But a

[issue2622] Import errors in email.message.py

2008-04-25 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc [EMAIL PROTECTED] added the comment: But such a test doesn't belong in the test suite. py2exe uses the modulefinder module to find dependencies. I tried this command:: ./python -m modulefinder Lib\email\message.py And among the output, there is:: ?

[issue2622] Import errors in email.message.py

2008-04-14 Thread John Jackson
John Jackson [EMAIL PROTECTED] added the comment: Attached is a sample code that reproduces the problem under python 2.5 on Mac OS 10.4.11. See file for instructions on how to reproduce the issue. Added file: http://bugs.python.org/file10030/test_mailbox.py __

[issue2622] Import errors in email.message.py

2008-04-13 Thread John Jackson
John Jackson [EMAIL PROTECTED] added the comment: I'll put one together. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2622 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue2622] Import errors in email.message.py

2008-04-12 Thread Guilherme Polo
Guilherme Polo [EMAIL PROTECTED] added the comment: You may not like the naming applied there, but surely it is not a import error. Can you actually manage to get an ImportError ? -- nosy: +gpolo __ Tracker [EMAIL PROTECTED]

[issue2622] Import errors in email.message.py

2008-04-12 Thread Georg Brandl
Changes by Georg Brandl [EMAIL PROTECTED]: -- assignee: - barry nosy: +barry priority: - low __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2622 __ ___

[issue2622] Import errors in email.message.py

2008-04-12 Thread John Jackson
John Jackson [EMAIL PROTECTED] added the comment: Yes. If the code is used to build a standalone application with py2app on the Mac, here's the end of the stack trace: File controller.pyo, line 17, in module File readMail.pyo, line 15, in module File mailbox.pyo, line 1294, in module

[issue2622] Import errors in email.message.py

2008-04-12 Thread Guilherme Polo
Guilherme Polo [EMAIL PROTECTED] added the comment: Can you send a sample code that reproduces that ? __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2622 __ ___ Python-bugs-list

[issue2622] Import errors in email.message.py

2008-04-11 Thread John Jackson
New submission from John Jackson [EMAIL PROTECTED]: In email.message.py there are two import errors: line 128 from email.Generator import Generator should be from email.generator import Generator line 784 from email.Iterators import walk should be from email.iterators import walk