dhall-python
dhall-python copied to clipboard
Serializing a loop/cycle in the structures crashes the interpreter
import dhall
el = {}
el["a"] = el
dhall.dumps(el)
Dhall does not support directly recursive structures, or infinite structures. This could have a better error message though, so I'll leave this issue open until I or someone else fixes that