Remove __metaclass__ remains.

This commit is contained in:
Georg Brandl 2008-05-27 20:34:09 +00:00
parent 7626235633
commit e81f5ef1eb
5 changed files with 11 additions and 13 deletions

View file

@ -440,7 +440,7 @@ class ClassPropertiesAndMethods(unittest.TestCase):
self.assertEqual(a[100:200], (100,200))
def test_metaclass(self):
# Testing __metaclass__...
# Testing metaclasses...
class C(metaclass=type):
def __init__(self):
self.__state = 0