Changes between Version 1 and Version 2 of Ticket #768, comment 5
- Timestamp:
- 08/20/20 11:33:58 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #768, comment 5
v1 v2 1 1 I've also captured a file that exhibited the `(foo . bar) (ht . #<hash-table (1)>))` behavior, but looking inside it was exactly the same as the other order. 2 2 3 In other words: ht foo-bar vs foo-bar ht has the same serialization, the order is different when creating the hash-table during deserialization.3 In other words: ht foo-bar vs foo-bar ht has the same serialization, the order-difference arises when creating the hash-table during deserialization. Which is fine. 4 4 5 Whereas the serializations that only exhibit ht does have foo-bar stored in them, but it is as back-references to the inner hash-table. 5 Whereas the serializations that only exhibit ht does have foo-bar stored in them, but it is as back-references to the inner hash-table. These files can't be deserialized properly no matter how often I try. Whether this is a bug in serialization or deserialization is TBD.