在python 2中使用super()提高类型错误

时间:2018-11-05 07:47:19

标签: python python-2.x

from HTMLParser import HTMLParser

class LinkFinder(HTMLParser):

    def __init__(self):
        super(HTMLParser, self).__init__()

上面的代码收到错误:

TypeError: must be type, not classobj

0 个答案:

没有答案