包frozentype提供一些冻结的python类型(frozendict(基于c)和frozenmap(基于cython))

frozentype的Python项目详细描述


frozentypeMIT Licensedpython库。 它实现了一些冻结的python类型:frozendicttype(在c中)和FrozenDictFrozenMapclasses(在cython中)。

  • frozendict是只读的可散列字典(基于c)。
  • frozenmap是环绕可变映射对象(基于cython)的只读映射对象。
  • frozendict是只读的可哈希字典(基于cython)。

这个库实际上是为了证明快速frozendict(基于c/cython)的概念。

^{tt4}的主存储库$ 在bitbucket上。

快速入门:

首次装载库存:

>>> from frozentype import frozendict, FrozenDict

简单示例:

>>> fd = frozendict(a=1,b=2,c=3)
>>> fd
frozendict({'a': 1, 'b': 2, 'c': 3})
>>> fd['a']
1
>>> fd['a'] = 10
........
TypeError: 'frozentype._frozendict.frozendict' object does not support item assignment
>>> del fd['a']
.........
TypeError: 'frozentype._frozendict.frozendict' object does not support item deletion
>>> fd.pop('a')
.........
AttributeError: 'frozentype._frozendict.frozendict' object has no attribute 'pop'


>>> fd = FrozenDict(a=1,b=2,c=3)
>>> print(fp)
FrozenDict({'a': 1, 'b': 2, 'c': 3})
>>> fd['a']
1
>>> fd['a'] = 10
........
TypeError: 'frozentype.frozendict.FrozenDict' object does not support item assignment
>>> del fd['a']
.........
TypeError: 'frozentype.frozendict.FrozenDict' object does not support item deletion
>>> fd.pop('a')
.........
AttributeError: 'frozentype.frozendict.FrozenDict' object has no attribute 'pop'

更改:

**0.6.0.1**(说服PYPI在自述文件中上传固定标题项目的技术版本)

**0.6**(从项目intellimath/frozenmap迁移)

  • 为frozendict添加c实现。
  • 为Frozendict类型添加测试。

0.5初始版本

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
JavaSpring重定向请求处理程序   SwingJava:拆分字符串并将其放入文本区域的   Java:标记“”上出现语法错误,此标记后面应为表达式   web服务Java RestService从日志文件写入和读取数据   java如何将ArrayList<String>转换为char数组,然后向后打印每个单词?   java SimpleDataFormat解析返回年终日期   加密Java aes解密bytebuffer,包括填充为空字节   java有没有办法从特定的if语句调用变量?   java从更新返回到渲染   spring GRPC Java登录测试   java为什么下面的代码不工作(StringBuffer.toString!=null)   java是一种可行的模式吗?   使用Spring集成测试的JavaOSGi片段   java jCommander为未知和未使用的值引发异常?   在imageView的editText中输入的java图像URL