summaryrefslogtreecommitdiff
path: root/Lib/string.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/string.py')
-rw-r--r--Lib/string.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/string.py b/Lib/string.py
index d4d13b2272..921bd8b1d0 100644
--- a/Lib/string.py
+++ b/Lib/string.py
@@ -108,9 +108,7 @@ class _TemplateMetaclass(type):
"""
def __init__(cls, name, bases, dct):
- # A super call makes no sense since type() doesn't define __init__().
- # (Or does it? And should type.__init__() accept three args?)
- # super(_TemplateMetaclass, cls).__init__(name, bases, dct)
+ super(_TemplateMetaclass, cls).__init__(name, bases, dct)
if 'pattern' in dct:
pattern = cls.pattern
else: