summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_descr.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-27 20:34:09 (GMT)
committerGeorg Brandl <georg@python.org>2008-05-27 20:34:09 (GMT)
commite81f5ef1ebf57e9df2cfefabb5c5fa67defa6d2f (patch)
tree13f435b9d8f0c352536fb92dadcb25aca673149e /Lib/test/test_descr.py
parent76262356333f4bef993c61436c34ea50ccf53f28 (diff)
downloadcpython-e81f5ef1ebf57e9df2cfefabb5c5fa67defa6d2f.zip
cpython-e81f5ef1ebf57e9df2cfefabb5c5fa67defa6d2f.tar.gz
cpython-e81f5ef1ebf57e9df2cfefabb5c5fa67defa6d2f.tar.bz2
Remove __metaclass__ remains.
Diffstat (limited to 'Lib/test/test_descr.py')
-rw-r--r--Lib/test/test_descr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index ad649cb..bfbb400 100644
--- a/Lib/test/test_descr.py
+++ b/Lib/test/test_descr.py
@@ -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