20 lines
240 B
Plaintext
Raw Permalink Normal View History

== Why is this an issue?
include::../description_without_reference_to_s5998.adoc[]
=== Noncompliant code example
2022-02-04 17:28:24 +01:00
[source,python]
----
r"a|b|c" # Noncompliant
----
=== Compliant solution
2022-02-04 17:28:24 +01:00
[source,python]
----
r"[abc]"
# or
r"[a-c]"
----