Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove _ex_keys mapping #128

Merged
merged 1 commit into from
Mar 22, 2018
Merged

Remove _ex_keys mapping #128

merged 1 commit into from
Mar 22, 2018

Commits on Jun 27, 2017

  1. Remove _ex_keys mapping

    Because they can get out of sync under python3 since
    `_dict` entries are converted into bytes while `_ex_keys` aren't
    and ```b'foo' != 'foo'``` under python 3.
    
    Instead of trying to convert back and forth between `bytes` and `str`
    in different places, this new implementation stores everything
    in `_dict` and makes sure values and timestamp are always stored together.
    ticosax committed Jun 27, 2017
    Configuration menu
    Copy the full SHA
    e37577d View commit details
    Browse the repository at this point in the history