This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Claudiu.Popa
Recipients Claudiu.Popa, terry.reedy, the.mulhern
Date 2014-03-18.13:54:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1395150845.24.0.840902103714.issue20897@psf.upfronthosting.co.za>
In-reply-to
Content
Hello. In 3.3 you can instantiate META class, because it does not properly say that it wants abc.ABCMeta as a metaclass. For this, you have to write your class as such:

class META(metaclass=abc.ABCMeta):
    @abc.abstractmethod
    def _junk(self):
       ...
History
Date User Action Args
2014-03-18 13:54:05Claudiu.Popasetrecipients: + Claudiu.Popa, terry.reedy, the.mulhern
2014-03-18 13:54:05Claudiu.Popasetmessageid: <1395150845.24.0.840902103714.issue20897@psf.upfronthosting.co.za>
2014-03-18 13:54:05Claudiu.Popalinkissue20897 messages
2014-03-18 13:54:05Claudiu.Popacreate