Make Message.__str__ more efficient.
diff --git a/Lib/rfc822.py b/Lib/rfc822.py
index 9a52a90..3811a59 100644
--- a/Lib/rfc822.py
+++ b/Lib/rfc822.py
@@ -460,10 +460,7 @@
         return self.dict.items()
 
     def __str__(self):
-        str = ''
-        for hdr in self.headers:
-            str = str + hdr
-        return str
+        return ''.join(self.headers)
 
 
 # Utility functions