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/_compat22.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/_compat22.py')
-rw-r--r-- | Lib/email/_compat22.py | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/Lib/email/_compat22.py b/Lib/email/_compat22.py new file mode 100644 index 0000000..d505c96 --- /dev/null +++ b/Lib/email/_compat22.py @@ -0,0 +1,56 @@ +# Copyright (C) 2002 Python Software Foundation +# Author: barry@zope.com + +"""Module containing compatibility functions for Python 2.1. +""" + +from __future__ import generators +from __future__ import division +from cStringIO import StringIO +from types import StringTypes + + + +# This function will become a method of the Message class +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 + + +# Used internally by the Header class +def _intdiv2(i): + """Do an integer divide by 2.""" + return i // 2 + + + +# These two functions are imported into the Iterators.py interface module. +# The Python 2.2 version uses generators for efficiency. +def body_line_iterator(msg): + """Iterate over the parts, returning string payloads line-by-line.""" + for subpart in msg.walk(): + payload = subpart.get_payload() + if isinstance(payload, StringTypes): + for line in StringIO(payload): + yield line + + +def typed_subpart_iterator(msg, maintype='text', subtype=None): + """Iterate over the subparts with a given MIME type. + + Use `maintype' as the main MIME type to match against; this defaults to + "text". Optional `subtype' is the MIME subtype to match against; if + omitted, only the main type is matched. + """ + for subpart in msg.walk(): + if subpart.get_main_type('text') == maintype: + if subtype is None or subpart.get_subtype('plain') == subtype: + yield subpart |