]> granicus.if.org Git - python/commitdiff
Remove obsolete comment.
authorR David Murray <rdmurray@bitdance.com>
Tue, 15 Mar 2011 16:48:41 +0000 (12:48 -0400)
committerR David Murray <rdmurray@bitdance.com>
Tue, 15 Mar 2011 16:48:41 +0000 (12:48 -0400)
Lib/email/message.py

index b821bfd62252b6880c96ed5477d8768166a90f2a..28835d09d95276678e77384ec140ad7871ff0dc9 100644 (file)
@@ -242,7 +242,7 @@ class Message:
             raise TypeError('Expected list, got %s' % type(self._payload))
         payload = self._payload
         cte = self.get('content-transfer-encoding', '').lower()
-        # payload can be bytes here, (I wonder if that is actually a bug?)
+        # payload may be bytes here.
         if isinstance(payload, str):
             if _has_surrogates(payload):
                 bpayload = payload.encode('ascii', 'surrogateescape')