Skip to content

fix: use raw string for regex in xlsform_parameters#344

Open
noliveleger wants to merge 2 commits intomainfrom
python3.12
Open

fix: use raw string for regex in xlsform_parameters#344
noliveleger wants to merge 2 commits intomainfrom
python3.12

Conversation

@noliveleger
Copy link
Copy Markdown
Contributor

Summary

Python 3.12 raises a SyntaxWarning when running tests due to an invalid escape sequence in a regex string.

Notes

  • re.split('\s+', ...)re.split(r'\s+', ...) in xlsform_parameters.py
  • SyntaxWarning is emitted at compile time; only visible on fresh installs (no .pyc cache), hence surfacing in CI but not locally

@noliveleger noliveleger self-assigned this Mar 24, 2026
@coveralls
Copy link
Copy Markdown

coveralls commented Mar 24, 2026

Coverage Status

coverage: 86.852%. remained the same
when pulling 969788b on python3.12
into e434285 on main.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants