• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

我可以在 Python 2.5.6 使用 Python 3 super() 吗?

用户头像
it1352
帮助1

问题说明

我可以使用干净的 Python 3 super() 语法在Python 2.5.6?
也许使用某种 __future__ 导入?

Can I use clean Python 3 super() syntax in Python 2.5.6?
Maybe with some kind of __future__ import?

正确答案

#1

您不能使用不包含类型/类的纯 super() 调用.你也不能实现一个有效的替代品.Python 3.x 包含对启用裸 super() 调用的特殊支持(它在类中定义的所有函数中放置一个 __class__ 单元变量 - 请参阅 PEP 3135

You cannot use a bare super() call that contains no type/class. Nor can you implement a replacement for it that will work. Python 3.x contains special support to enable bare super() calls (it places a __class__ cell variable in all functions defined within a class - see PEP 3135

更新

从 Python 2.6 开始,可以通过 future Python 包使用裸 super() 调用.有关解释,请参阅 posita 的回答.

As of Python 2.6 , bare super() calls can be used via the future Python package. See posita's answer for an explanation.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcffihi
系列文章
更多 icon
同类精品
更多 icon
继续加载