summaryrefslogtreecommitdiffstats
path: root/Lib/email/Iterators.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2002-05-19 23:44:19 (GMT)
committerBarry Warsaw <barry@python.org>2002-05-19 23:44:19 (GMT)
commit8c1aac247667e6ac146e9153cd2941e4c5ec7b09 (patch)
tree4ed2ee7b3470d19d54d99d61f7509d3d4c5777bf /Lib/email/Iterators.py
parent2ae87539aad20670184ff9d30f625dddd6ac2e78 (diff)
downloadcpython-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/Iterators.py')
-rw-r--r--Lib/email/Iterators.py32
1 files changed, 5 insertions, 27 deletions
diff --git a/Lib/email/Iterators.py b/Lib/email/Iterators.py
index 515bac9..a6ddceb 100644
--- a/Lib/email/Iterators.py
+++ b/Lib/email/Iterators.py
@@ -4,30 +4,8 @@
"""Various types of useful iterators and generators.
"""
-from __future__ import generators
-from cStringIO import StringIO
-from types import StringType
-
-
-
-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 type(payload) is StringType:
- 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
+try:
+ from email._compat22 import body_line_iterator, typed_subpart_iterator
+except SyntaxError:
+ # Python 2.1 doesn't have generators
+ from email._compat21 import body_line_iterator, typed_subpart_iterator