作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
引入 Python 3.9 str.removeprefix() .我在这里仅将其用作示例。
比方说,我想在一个应该在所有 支持的 Python 版本(目前还有 3.6、3.7 和 3.8)上运行的库中使用这个新功能。我的意思是直接使用:mystring.removeprefix('xy_')
。
我试过这个:
if sys.version_info < (3,9):
def removeprefix_compat(self, prefix):
# implement removeprefix (or just copy it from PEP-616)
return 'TODO'
str.removeprefix = removeprefix_compat
但结果是:TypeError: can't set attributes of built-in/extension type 'str'
。
因此似乎要到 2024/2025 年冬季才能实现(3.8 将处于 EOL 状态)。真的是这样吗?
UPDATE1(基于@buran 评论中的链接):
这破坏了东西:
import json, builtins
class PatchedStr(str):
pass
builtins.str = PatchedStr
json.loads('"aaa"')
# TypeError: the JSON object must be str, bytes or bytearray, not str
最佳答案
事实:
结论:
如果您需要支持较旧的 Python 版本,请按照只有您希望支持的最低版本可用的方式进行开发。 IE。如果您将 Python 3.6 设置为最低要求版本,则仅使用 Python 3.6 中可用的功能并将较新版本中的任何内容视为不存在,因为事实上它不至少存在于您的一个版本中想要支持。
关于python - 如何反向移植像 str.removeprefix 这样的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67883073/
引入 Python 3.9 str.removeprefix() .我在这里仅将其用作示例。 比方说,我想在一个应该在所有 支持的 Python 版本(目前还有 3.6、3.7 和 3.8)上运行的库
我是一名优秀的程序员,十分优秀!