]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove stray pychecker directive.
authorGeorg Brandl <georg@python.org>
Sun, 28 Jun 2009 12:10:18 +0000 (12:10 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 28 Jun 2009 12:10:18 +0000 (12:10 +0000)
Lib/email/mime/nonmultipart.py

index dd280b51d03e1d0c755dc612f6973ec15725d29b..fc3b9eb4dcfbf8ef4621ee7e545cc237dcf12e09 100644 (file)
@@ -14,13 +14,9 @@ from email.mime.base import MIMEBase
 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__