SecBSD's official ports repository
This commit is contained in:
commit
2c0afcbbf3
64331 changed files with 5339189 additions and 0 deletions
15
devel/py-frozendict/pkg/DESCR
Normal file
15
devel/py-frozendict/pkg/DESCR
Normal file
|
@ -0,0 +1,15 @@
|
|||
frozendict is an immutable wrapper around dictionaries that implements the
|
||||
complete mapping interface. It can be used as a drop-in replacement for
|
||||
dictionaries where immutability is desired.
|
||||
|
||||
Of course, this is Python, and you can still poke around the object's internals
|
||||
if you want.
|
||||
|
||||
The frozendict constructor mimics dict, and all of the expected interfaces
|
||||
(iter, len, repr, hash, getitem) are provided. Note that a frozendict does not
|
||||
guarantee the immutability of its values, so the utility of hash method is
|
||||
restricted by usage.
|
||||
|
||||
The only difference is that the copy() method of frozendict takes variable
|
||||
keyword arguments, which will be present as key/value pairs in the new,
|
||||
immutable copy.
|
24
devel/py-frozendict/pkg/PLIST
Normal file
24
devel/py-frozendict/pkg/PLIST
Normal file
|
@ -0,0 +1,24 @@
|
|||
@pkgpath devel/py-frozendict
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict/
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict-${MODPY_EGG_VERSION}.dist-info/
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict-${MODPY_EGG_VERSION}.dist-info/LICENSE.txt
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict-${MODPY_EGG_VERSION}.dist-info/METADATA
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict-${MODPY_EGG_VERSION}.dist-info/RECORD
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict-${MODPY_EGG_VERSION}.dist-info/WHEEL
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict-${MODPY_EGG_VERSION}.dist-info/top_level.txt
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict/__init__.py
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict/__init__.pyi
|
||||
${MODPY_COMMENT}lib/python${MODPY_VERSION}/site-packages/frozendict/${MODPY_PYCACHE}/
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict/${MODPY_PYCACHE}__init__.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict/${MODPY_PYCACHE}core.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict/${MODPY_PYCACHE}core.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict/${MODPY_PYCACHE}monkeypatch.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict/${MODPY_PYCACHE}monkeypatch.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict/${MODPY_PYCACHE}version.${MODPY_PYC_MAGIC_TAG}${MODPY_PYOEXTENSION}
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict/${MODPY_PYCACHE}version.${MODPY_PYC_MAGIC_TAG}pyc
|
||||
@so lib/python${MODPY_VERSION}/site-packages/frozendict/_frozendict.${MODPY_PYC_MAGIC_TAG}so
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict/core.py
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict/monkeypatch.py
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict/py.typed
|
||||
lib/python${MODPY_VERSION}/site-packages/frozendict/version.py
|
Loading…
Add table
Add a link
Reference in a new issue