dhall-python icon indicating copy to clipboard operation
dhall-python copied to clipboard

Loading Dhall objects results in nondeterministic key order

Open CrazyPython opened this issue 3 years ago • 0 comments

Is this an upstream dhall-rust issue?

`` ➜ ~ cat test.dhall { a = "a", b = "b" }


In [2]: dhall.load(open('test.dhall')) Out[2]: {'b': 'b', 'a': 'a'}

In [5]: dhall.load(open('test.dhall')) Out[5]: {'a': 'a', 'b': 'b'}

CrazyPython avatar Jan 13 '23 01:01 CrazyPython