simplistix / configurator

A Python library for handling configuration files.
https://configurator.readthedocs.io
MIT License
39 stars 6 forks source link

ConfigNode.items() should not sort self.data. #14

Closed cjw296 closed 1 year ago

cjw296 commented 1 year ago

This code: https://github.com/simplistix/configurator/blob/0e6f539c43de6d62add0db2589a7af92c1848d72/configurator/node.py#L110-L117 ...should not sort, as the ordering in the underlying dict map have important meaning!

cjw296 commented 1 year ago

Fixed in 101b36e. I suspect this was a Python 2-ism from back when mappings had no defined order.