python2.6 中应该使用 OrderedDict 的哪个实现?
你们中的一些人可能知道,在 python2.7/3.2 中,我们将使用 PEP372 获得 OrderedDict 然而 PEP 存在的原因之一是因为每个人都做了自己的实现,而且它们都看起来不兼容。
那么 PEP 中当前的 8 个实现中的哪一个与 python 2.7 的 2.7 odict 向后兼容,我们现在就可以开始使用它,并在几个月后依赖 2.7?
As some of you may know in python2.7/3.2 we'll get OrderedDict with PEP372 however one of the reason the PEP existed was because everyone did their own implementation and they were all sightly incompatible.
So which one of the 8 current implementations in the PEP is backwards compatible with the 2.7 odict from python 2.7 in a way we can start using that now and depend on 2.7 in a couple of months?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此包(适用于 Python 2.4 或更高版本)声称是“一个替代品”对于 Py2.7 的新 collections.OrderedDict,它适用于 Python 2.4-2.6。”,但我还没有检查该声明。
This package (for Python 2.4 or better) claims to be "A drop-in substitute for Py2.7's new collections.OrderedDict that works in Python 2.4-2.6.", but I have not checked that claim.