Re: email module documentation

2005-11-22 Thread David Bear
Robert Kern wrote: > David Bear wrote: >> I'm confused about how to use the email module in python 2.4.x >> >> I'm using python packaged with suse 9.3. >> >>>From the module documetation at http://docs.python.org/lib/node597.html I >> found the following example (items cut): >> >> import email

Re: email module documentation

2005-11-22 Thread Robert Kern
David Bear wrote: > I'm confused about how to use the email module in python 2.4.x > > I'm using python packaged with suse 9.3. > >>From the module documetation at http://docs.python.org/lib/node597.html I > found the following example (items cut): > > import email > > ... > msg = email.messag

email module documentation

2005-11-22 Thread David Bear
I'm confused about how to use the email module in python 2.4.x I'm using python packaged with suse 9.3. >From the module documetation at http://docs.python.org/lib/node597.html I found the following example (items cut): import email ... msg = email.message_from_file(fp) .. Yet, when I try thi