Open sfan5 opened 5 months ago
/home/stefan/aurbuild/libplacebo-git.git/src/libplacebo/tools/glsl_preproc/macros.py:87: SyntaxWarning: invalid escape sequence '\s' line = re.sub(f'^\s{{1,{leading_spaces}}}', '', line)
no bug because "\s" == "\\s"
"\s" == "\\s"
This occurs only with Python 3.12 and later.
To fix this bug, use a raw string; see https://docs.python.org/3/library/re.html
no bug because
"\s" == "\\s"