首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >OrderedDict in IronPython失踪?

OrderedDict in IronPython失踪?
EN

Stack Overflow用户
提问于 2013-10-14 22:40:18
回答 1查看 558关注 0票数 1

为什么OrderedDict在IronPython中不可用:

代码语言:javascript
复制
import _collections as cl
dir(cl)

不显示OrderedDict

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2013-10-15 10:29:46

在一些(大部分/全部?)实现OrderedDict是公共集合模块的一部分,而不是内部_collections的一部分。

我扩展了您的代码片段以包含更多信息:

代码语言:javascript
复制
import sys
print(sys.version)
import _collections as _cl
print "_collections:", dir(_cl)
import collections as cl
print "collections:", dir(cl)

对于IronPython,结果是:

代码语言:javascript
复制
2.7.4 (IronPython 2.7.4 (2.7.0.40) on .NET 4.0.30319.18331 (32-bit))
_collections: ['__doc__', '__name__', '__package__', 'defaultdict', 'deque']
collections: ['Callable', 'Container', 'Counter', 'Hashable', 'ItemsView', 'Iterable', 'Iterator', 'KeysView', 'Mapping', 'MappingView', 'MutableMapping', 'MutableSequence', 'MutableSet', 'OrderedDict', 'Sequence', 'Set', 'Sized', 'ValuesView', '__all__', '__builtins__', '__doc__', '__file__', '__name__', '__package__', '_abcoll', '_chain', '_get_ident', '_heapq', '_iskeyword', '_itemgetter', '_repeat', '_starmap', '_sys', 'defaultdict', 'deque', 'namedtuple']

对于CPython,结果是:

代码语言:javascript
复制
2.7.5 (default, May 15 2013, 22:44:16) [MSC v.1500 64 bit (AMD64)]
_collections: ['__doc__', '__name__', '__package__', 'defaultdict', 'deque']
collections: ['Callable', 'Container', 'Counter', 'Hashable', 'ItemsView', 'Iterable', 'Iterator', 'KeysView', 'Mapping', 'MappingView', 'MutableMapping', 'MutableSequence', 'MutableSet', 'OrderedDict', 'Sequence', 'Set', 'Sized', 'ValuesView', '__all__', '__builtins__', '__doc__', '__file__', '__name__', '__package__', '_abcoll', '_chain', '_class_template', '_eq', '_field_template', '_get_ident', '_heapq', '_imap', '_iskeyword', '_itemgetter', '_repeat', '_repr_template', '_starmap', '_sys', 'defaultdict', 'deque', 'namedtuple']
票数 3
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/19370432

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档