We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following functions do not work as expected:
pop(key)
should return the correct value and also warn if a deprecated key is used.
clear()
should remove the deprecated lookup dict.
copy()
should return a dict that still warns
del my_dict[deprecated_key]
should warn before removing correctly
key in dict
should return the correct value (true in case of a deprecated key) and warn
items(), keys(), values()
are also not supported as of now, they do not contain the old keys
__iter__
should also be adapted, currently it does not yield a list with the old key and also does not warn.
The text was updated successfully, but these errors were encountered:
Fixed with #10
Sorry, something went wrong.
NOhs
No branches or pull requests
The following functions do not work as expected:
should return the correct value and also warn if a deprecated key is used.
clear()
should remove the deprecated lookup dict.
copy()
should return a dict that still warns
should warn before removing correctly
should return the correct value (true in case of a deprecated key) and warn
are also not supported as of now, they do not contain the old keys
__iter__
should also be adapted, currently it does not yield a list with the old key and also does not warn.
The text was updated successfully, but these errors were encountered: