-
- Downloads
The SimpleParser would open and close sections in an arbitrary order because...
The SimpleParser would open and close sections in an arbitrary order because dict.items() returns the items in a random order. Instead of using a regular python dictionary, I replaced it with collections.OrderedDict that will remember the order in which items are added.
Loading
Please register or sign in to comment