rspec/rules/S5429/python/rule.adoc

57 lines
1.6 KiB
Plaintext
Raw Normal View History

== Why is this an issue?
2021-04-28 16:49:39 +02:00
A common anti-pattern is to check that a key exists in a dictionary before retrieving its corresponding value and providing a default value otherwise. This pattern works but is less readable than the equivalent call to the built-in dictionary method "get()" with a default value.
Note that if a default value is set for every key of the dictionary it is possible to use python's defaultdict instead.
This rule raises an issue when a key presence is checked before retrieving its value or providing a default value. It only raises an issue when the default value is a hard-coded string, number, list, dictionary or tuple. Computed values will not raise an issue as they can have side-effects.
=== Noncompliant code example
2021-04-28 16:49:39 +02:00
2022-02-04 17:28:24 +01:00
[source,python]
2021-04-28 16:49:39 +02:00
----
result = "default"
if "missing" in mydict:
result = mydict["missing"] # Noncompliant
if "missing" in mydict:
result = mydict["missing"] # Noncompliant
else:
result = "default"
if "missing" in mydict:
result = mydict["missing"] # Compliant. No issue is raised as generate_value() might have some side-effect.
else:
result = generate_value()
----
=== Compliant solution
2021-04-28 16:49:39 +02:00
2022-02-04 17:28:24 +01:00
[source,python]
2021-04-28 16:49:39 +02:00
----
result = mydict.get("missing", "default")
# OR, if "default" is the default value for every key
from collections import defaultdict
mydict = defaultdict(lambda: "default")
result = mydict["missing"]
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
=== Message
Replace this key check and dictionary access with a call to "get(..., default)"
endif::env-github,rspecator-view[]