也许这是一个愚蠢的问题,但为什么这段代码在 python 2.7 中不起作用?
from ConfigParser import ConfigParser
class MyParser(ConfigParser):
def __init__(self, cpath):
super(MyParser, self).__init__()
self.configpath = cpath
self.read(self.configpath)
它失败了:
TypeError: must be type, not classobj
上super()
线。