[Python-checkins] r73605 - python/trunk/Lib/email/mime/nonmultipart.py

georg.brandl python-checkins at python.org
Sun Jun 28 14:10:19 CEST 2009


Author: georg.brandl
Date: Sun Jun 28 14:10:18 2009
New Revision: 73605

Log:
Remove stray pychecker directive.

Modified:
   python/trunk/Lib/email/mime/nonmultipart.py

Modified: python/trunk/Lib/email/mime/nonmultipart.py
==============================================================================
--- python/trunk/Lib/email/mime/nonmultipart.py	(original)
+++ python/trunk/Lib/email/mime/nonmultipart.py	Sun Jun 28 14:10:18 2009
@@ -14,13 +14,9 @@
 class MIMENonMultipart(MIMEBase):
     """Base class for MIME multipart/* type messages."""
 
-    __pychecker__ = 'unusednames=payload'
-
     def attach(self, payload):
         # The public API prohibits attaching multiple subparts to MIMEBase
         # derived subtypes since none of them are, by definition, of content
         # type multipart/*
         raise errors.MultipartConversionError(
             'Cannot attach additional subparts to non-multipart/*')
-
-    del __pychecker__


More information about the Python-checkins mailing list