Python:在 Python 中使用 abc < 2.6

发布于 2024-11-02 07:27:41 字数 191 浏览 1 评论 0 原文

有人知道旧版本Python(早于2.6)的 abc 实现吗?

编辑:例如,我正在寻找一个片段,它可以做与 ABCMeta 和 Abstractmethod 相同的事情,具有相同的接口,我实际上需要使一段代码向后兼容

Do someone know an implementation of abc for older versions of Python (older than 2.6) ?

EDIT : I am for example looking for a snippet that would do the same thing as ABCMeta and abstractmethod, with same interface, I actually need to make a piece of code backward compatible

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁对谁错谁最难过 2024-11-09 07:27:42

abc 模块本身恰好是向后兼容的。只需将 abc.py 从 2.6 复制到 pythonpath 上的某个位置即可。

The abc module itself happens to be backwards compatible. Just copy abc.py from 2.6 to somewhere on the pythonpath.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文