On Fri, 20 Nov 2009 11:58:00 -0400, Victor Subervi wrote: Hello Victor,
Carsten's well-specified instruction has identified your problem. >[r...@13gems globalsolutionsgroup.vi]# python -c "import email; print >email" ><module 'email' from 'email.pyc'> There is a file named email.pyc, most likely in your current directory, that is masking the email package in the standard library. Remove/rename email.pyc and email.py, if it exists. Cheers, Kevin -- http://mail.python.org/mailman/listinfo/python-list
