hey,
it is possible to make sure that a given dictionary stays the same way?
for example
[code=python]
options = { 'Something':'va lue','abc':'val ue' }
[/code]
this should stay the same and not switch like this:
[code=python]
>>> options = { 'Something':'va lue','abc':'val ue' }
>>> print options
{'abc': 'value', 'Something': 'value'}
>>>
[/code]
it is possible to make sure that a given dictionary stays the same way?
for example
[code=python]
options = { 'Something':'va lue','abc':'val ue' }
[/code]
this should stay the same and not switch like this:
[code=python]
>>> options = { 'Something':'va lue','abc':'val ue' }
>>> print options
{'abc': 'value', 'Something': 'value'}
>>>
[/code]
Comment