文件名称:pyrthon:对Python中的Pyrsistent数据结构的文字支持
文件大小:13KB
文件格式:ZIP
更新时间:2024-06-02 20:53:59
Python
介绍 Pyrthon是一个实用程序库,用对应项替换了python集合文字。 而不是这样写: from pyrsistent import pvector x = pvector ([ 1 , 2 , 3 ]) y = x . set ( 0 , 17 ) 您可以简单地这样写: x = [ 1 , 2 , 3 ] y = x . set ( 0 , 17 ) 结果将是等效的。 例子 在foo / main.py中: # Register any modules under 'foo' for pyrsistent substitution before any # imports from 'foo' modules. # # Registration can be done in three ways: # * Exact module name. # register('
【文件预览】:
pyrthon-master
----.gitignore(50B)
----pyrthon()
--------_console.py(962B)
--------_transformer.py(2KB)
--------pyrthon_extension.py(577B)
--------_version.py(22B)
--------__init__.py(811B)
--------console.py(114B)
--------_import_hook.py(2KB)
----.cache()
--------v()
----README.rst(4KB)
----tests()
--------test_excluded_no_substitution.py(90B)
--------test_pyrthon.py(2KB)
--------test_excluded_special_case.py(135B)
--------__init__.py(1B)
--------__main__.py(1KB)
--------test_load_extension.ipynb(3KB)
--------test_included_wildcard_import.py(171B)
--------test_included_substitution.py(136B)
----run_tests.sh(36B)
----LICENSE.mit(1KB)
----requirements.txt(22B)
----CHANGES.txt(235B)
----setup.py(777B)
----.travis.yml(153B)
----tox.ini(453B)