On 7/13/24 7:24 PM, Eyal Lebedinsky wrote:
Following the upgrade f38->f40 I started getting warnings and errors. This is one.

What is the correct escapes to select strings starting with (AD) and [AD]?

/usr/local/bin/mythtv-fix-descriptions.py:33: SyntaxWarning: invalid escape sequence '\['
   re_tag = re.compile ("^[\[(]AD[\])] *")

If I remove the escapes I get:

/usr/local/bin/mythtv-fix-descriptions.py:33: FutureWarning: Possible nested set at position 2
   re_tag = re.compile ("^[[(]AD[])] *")

However making it a raw string removes the warning, but will it do the right thing?

   re_tag = re.compile (r"^[\[(]AD[\])] *")

The raw string is correct. It was only working originally because it was an invalid escape sequence and so the backslashes were left in.

--
_______________________________________________
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue

Reply via email to