diff options
author | Barry Warsaw <barry@python.org> | 2002-05-19 23:44:19 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-05-19 23:44:19 (GMT) |
commit | 8c1aac247667e6ac146e9153cd2941e4c5ec7b09 (patch) | |
tree | 4ed2ee7b3470d19d54d99d61f7509d3d4c5777bf /Lib/email/Message.py | |
parent | 2ae87539aad20670184ff9d30f625dddd6ac2e78 (diff) | |
download | cpython-8c1aac247667e6ac146e9153cd2941e4c5ec7b09.zip cpython-8c1aac247667e6ac146e9153cd2941e4c5ec7b09.tar.gz cpython-8c1aac247667e6ac146e9153cd2941e4c5ec7b09.tar.bz2 |
Complete a merge of the mimelib project and the Python cvs codebases
for the email package. The former is now just a shell project that
has some extra files for packaging for independent use (e.g. setup.py
and README).
Added a compatibility layer so that the same API can be used in Python
2.1 and 2.2/2.3 with the major differences shuffled off into helper
modules (_compat21.py and _compat22.py).
Also bumped the package version number to 2.0.3 for some fixes to be
checked in momentarily.
Diffstat (limited to 'Lib/email/Message.py')
-rw-r--r-- | Lib/email/Message.py | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/Lib/email/Message.py b/Lib/email/Message.py index 71d10c4..6cb659c 100644 --- a/Lib/email/Message.py +++ b/Lib/email/Message.py @@ -607,17 +607,11 @@ class Message: newheaders.append((h, v)) self._headers = newheaders - def walk(self): - """Walk over the message tree, yielding each subpart. - - The walk is performed in depth-first order. This method is a - generator. - """ - yield self - if self.is_multipart(): - for subpart in self.get_payload(): - for subsubpart in subpart.walk(): - yield subsubpart + try: + from email._compat22 import walk + except SyntaxError: + # Must be using Python 2.1 + from email._compat21 import walk def get_charsets(self, failobj=None): """Return a list containing the charset(s) used in this message. |