]> granicus.if.org Git - python/commitdiff
walk(): Fix docstring; traversal is depth-first. Closes mimelib bug
authorBarry Warsaw <barry@python.org>
Mon, 5 Nov 2001 19:19:55 +0000 (19:19 +0000)
committerBarry Warsaw <barry@python.org>
Mon, 5 Nov 2001 19:19:55 +0000 (19:19 +0000)
#477864.

Lib/email/Message.py

index 6f0db856b8b267396f6d12e75ff8a19c8962c947..7216e38db52ae8c3e48ca1368c24f974f19032a3 100644 (file)
@@ -423,7 +423,7 @@ class Message:
     def walk(self):
         """Walk over the message tree, yielding each subpart.
 
-        The walk is performed in breadth-first order.  This method is a
+        The walk is performed in depth-first order.  This method is a
         generator.
         """
         yield self