Closed
Description
Given file with:
d = {"foo": "bar"}
if d.has_key("foo"):
print("d has the key!")
behavior in Python 3.x
d = {}
d.has_key("foo")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'dict' object has no attribute 'has_key'
vermin does not report a problem with py3 although you will get an error.
output snipit:
vermin.exe -t=3.6 -v C:\py2
Detecting python files..
Analyzing 2 files using 4 processes..
2.0, 3.0 C:\py2\dict_has_key.py
Reference:
https://portingguide.readthedocs.io/en/latest/dicts.html
Metadata
Metadata
Assignees
Labels
No labels