]> granicus.if.org Git - python/commitdiff
_structure(): Take an optional `fp' argument which would be the object
authorBarry Warsaw <barry@python.org>
Fri, 19 Jul 2002 22:21:47 +0000 (22:21 +0000)
committerBarry Warsaw <barry@python.org>
Fri, 19 Jul 2002 22:21:47 +0000 (22:21 +0000)
to print>> the structure to.  Defaults to sys.stdout.

Lib/email/Iterators.py

index 0d0e0b2c2d091655d812d57d6eaf1ee15247500c..d5f6eebadedf86c259741634ea9d7bd4127d7b1a 100644 (file)
@@ -4,6 +4,8 @@
 """Various types of useful iterators and generators.
 """
 
+import sys
+
 try:
     from email._compat22 import body_line_iterator, typed_subpart_iterator
 except SyntaxError:
@@ -12,10 +14,12 @@ except SyntaxError:
 
 
 \f
-def _structure(msg, level=0):
+def _structure(msg, level=0, fp=None):
     """A handy debugging aid"""
+    if fp is None:
+        fp = sys.stdout
     tab = ' ' * (level * 4)
-    print tab + msg.get_type(msg.get_default_type())
+    print >> fp, tab + msg.get_type(msg.get_default_type())
     if msg.is_multipart():
         for subpart in msg.get_payload():
-            _structure(subpart, level+1)
+            _structure(subpart, level+1, fp)