2023-05-03 11:06:20 +02:00
|
|
|
== Why is this an issue?
|
|
|
|
|
2023-10-16 13:31:15 +02:00
|
|
|
Parentheses can disambiguate the order of operations in complex expressions and make the code easier to understand.
|
|
|
|
|
|
|
|
[source,python]
|
|
|
|
----
|
|
|
|
a = (b * c) + (d * e) # Compliant: the intent is clear.
|
|
|
|
----
|
|
|
|
|
|
|
|
Redundant parentheses are parenthesis that
|
|
|
|
do not change the behavior of the code, and
|
|
|
|
do not clarify the intent.
|
|
|
|
They can mislead and complexify the code.
|
|
|
|
They should be removed.
|
2020-06-30 12:47:33 +02:00
|
|
|
|
2023-05-03 11:06:20 +02:00
|
|
|
=== Noncompliant code example
|
2020-06-30 12:47:33 +02:00
|
|
|
|
2022-02-04 17:28:24 +01:00
|
|
|
[source,python]
|
2020-06-30 12:47:33 +02:00
|
|
|
----
|
|
|
|
return ((3)) # Noncompliant
|
|
|
|
return ((x + 1)) # Noncompliant
|
|
|
|
x = ((y / 2)) + 1 # Noncompliant
|
|
|
|
----
|
|
|
|
|
2023-05-03 11:06:20 +02:00
|
|
|
=== Compliant solution
|
2020-06-30 12:47:33 +02:00
|
|
|
|
2022-02-04 17:28:24 +01:00
|
|
|
[source,python]
|
2020-06-30 12:47:33 +02:00
|
|
|
----
|
|
|
|
return 3
|
|
|
|
return (3)
|
|
|
|
return x + 1
|
|
|
|
return (x + 1)
|
|
|
|
x = y / 2 + 1
|
|
|
|
x = (y / 2) + 1
|
|
|
|
----
|
2021-06-02 20:44:38 +02:00
|
|
|
|
2021-06-03 09:05:38 +02:00
|
|
|
ifdef::env-github,rspecator-view[]
|
2021-09-20 15:38:42 +02:00
|
|
|
|
|
|
|
'''
|
|
|
|
== Implementation Specification
|
|
|
|
(visible only on this page)
|
|
|
|
|
2023-05-25 14:18:12 +02:00
|
|
|
=== Message
|
|
|
|
|
|
|
|
Remove those redundant parentheses.
|
|
|
|
|
2021-09-20 15:38:42 +02:00
|
|
|
include::../highlighting.adoc[]
|
|
|
|
|
2021-06-08 15:52:13 +02:00
|
|
|
'''
|
2021-06-02 20:44:38 +02:00
|
|
|
== Comments And Links
|
|
|
|
(visible only on this page)
|
|
|
|
|
|
|
|
include::../comments-and-links.adoc[]
|
2023-06-22 10:38:01 +02:00
|
|
|
|
2021-06-03 09:05:38 +02:00
|
|
|
endif::env-github,rspecator-view[]
|