2021-10-28 17:58:38 +02:00
|
|
|
include::../description.adoc[]
|
|
|
|
|
|
|
|
|
|
|
|
== Noncompliant Code Example
|
|
|
|
|
2022-02-04 17:28:24 +01:00
|
|
|
[source,python]
|
2021-10-28 17:58:38 +02:00
|
|
|
----
|
|
|
|
r"[ab]|a" # The "|a" is redundant because "[ab]" already matches "a"
|
|
|
|
r".*|a" # .* matches everything, so any other alternative is redundant
|
|
|
|
----
|
|
|
|
|
|
|
|
|
|
|
|
== Compliant Solution
|
|
|
|
|
2022-02-04 17:28:24 +01:00
|
|
|
[source,python]
|
2021-10-28 17:58:38 +02:00
|
|
|
----
|
|
|
|
r"[ab]"
|
|
|
|
r".*"
|
|
|
|
----
|