Files
openide/python/testData/inspections/DictCreation.py
T
2012-04-23 16:41:52 +04:00

5 lines
215 B
Python

<caret><weak_warning descr="This dictionary creation could be rewritten as a dictionary literal">dict = {"n": "n"}</weak_warning>
dict["a"], dict["b"] = "a", "b"
dict["k"] = "k"
dict["j"], c = "j", 4
dict["c"] = "c"