Re: [edk2-devel] [PATCH v1 0/1] Resolve regex syntax warnings

2023-12-20 Thread Rebecca Cran
Queued as https://github.com/tianocore/edk2/pull/5178 . On 12/6/2023 1:27 PM, Joey Vagedes wrote: Python 3.12 now produces syntax warnings when using an invalid escape character (\ followed by an unexpected character). This happens throughout BaseTools due the usage of regular expressions. the

[edk2-devel] [PATCH v1 0/1] Resolve regex syntax warnings

2023-12-06 Thread Joey Vagedes via groups.io
Python 3.12 now produces syntax warnings when using an invalid escape character (\ followed by an unexpected character). This happens throughout BaseTools due the usage of regular expressions. the re module in python suggests that when creating regex patterns, to use raw text. This patch series