Skip to main content

No project description provided

Project description

frozenset is to set as freeze is to Any.

That is, type(a) is type(b) and a != b implies freeze(a) != freeze(b).

Moreover, this function is deterministic, so it can be used to compare states across subsequent process invocations.

>>> obj = [1, 2, 3, {4, 5, 6}, object()]
>>> hash(obj)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: unhashable type: 'list'
>>> from charmonium.freeze import freeze
>>> frozen_obj = freeze(obj)
>>> frozen_obj
(1, 2, 3, frozenset({4, 5, 6}), ("<class 'type'>", ('object',)))
>>> hash(frozen_obj) % 1
0

Special cases

  • freeze on functions returns their bytecode, constants, and closure-vars. This means that freeze_state(f) == freeze_state(g) implies f(x) == g(x). The remarkable thing is that this is true across subsequent invocations of the same process. If the user edits the script and changes the function, then it’s freeze_state will change too.

  • freeze on objects returns the objects that would be used by pickle from __reduce__, __reduce_ex__, __getnewargs__, __getnewargs_ex__, and __getstate__. The simplest of these to customize your object __gestate__. See the pickle documentation for details.

  • In the cases where __getstate__ is already defined for pickle, and this definition is not suitable for freeze_state, one may override this with __getfrozenstate__ which takes precedence.

Although, this function is not infallible for user-defined types; I will do my best, but sometimes these laws will be violated. These cases include:

  • Cases where __eq__ makes objects equal despite differing attributes or inversely make objects inequal despite equal attributes.

    • This can be mitigated if __getstate__ or __getfrozenstate__

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

charmonium.freeze-0.2.0.tar.gz (6.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

charmonium.freeze-0.2.0-py3-none-any.whl (6.0 kB view details)

Uploaded Python 3

File details

Details for the file charmonium.freeze-0.2.0.tar.gz.

File metadata

  • Download URL: charmonium.freeze-0.2.0.tar.gz
  • Upload date:
  • Size: 6.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.10 CPython/3.9.6 Linux/5.11.0-40-generic

File hashes

Hashes for charmonium.freeze-0.2.0.tar.gz
Algorithm Hash digest
SHA256 ad4923e99c51def1bacb6c5b5faf67f8b2273f0fb5a7407d11dce74359aa14ee
MD5 516ead3bae5f637dce93c49bb22f3361
BLAKE2b-256 d85624ddc158e0c680c47a95fc8c34ab282c8792c6f9d85b5240ab3bb9d2ba62

See more details on using hashes here.

File details

Details for the file charmonium.freeze-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: charmonium.freeze-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 6.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.10 CPython/3.9.6 Linux/5.11.0-40-generic

File hashes

Hashes for charmonium.freeze-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b91e01df97ea34e863b40fac83f06616b532f4ba2d74cb6b733167d3eb4afdf9
MD5 4b50e2da2f1707d34c4c741dd00231cd
BLAKE2b-256 1dd3949909d7aa8a6d0c23684150f078bdfb21831473f9359a9f10d2ebb7fd90

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page