PyCharm:“self....”上的自动完成功能不起作用,因为使用了 with_metaclass()
Posted
技术标签:
【中文标题】PyCharm:“self....”上的自动完成功能不起作用,因为使用了 with_metaclass()【英文标题】:PyCharm: autocomplete on "self...." does not work since with_metaclass() gets used 【发布时间】:2020-03-11 14:58:34 【问题描述】:由于我们使用with_metaclass(),PyCharm 不再检测超类。
新代码(自动完成功能不起作用):
class EditTestCase(with_metaclass(EditTestCaseMeta, EditTestCaseMixin, unittest.TestCase)):
....
旧代码(自动完成工作):
class EditTestCase(EditTestCaseMixin, unittest.TestCase):
__metaclass__ = EditTestCaseMeta
....
代码需要支持Python2.7和Python3
【问题讨论】:
【参考方案1】:使用来自six 模块的with_metaclass()
适用于Python2 和3。
【讨论】:
太棒了。现在 PyCharm 检测到父类并且自动完成功能再次起作用。非常感谢您的提示!以上是关于PyCharm:“self....”上的自动完成功能不起作用,因为使用了 with_metaclass()的主要内容,如果未能解决你的问题,请参考以下文章
Pycharm(Python IDE)不会自动完成 Django 模块