Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

textcode markup: fix SyntaxWarning in regex #3891

Merged
merged 2 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ v33.0.0 (next next, roadmap)
- New and improved copyright detection with many false positive removed
and refined detection added.

- Fix Python ``SyntaxWarning`` in textcode module.

v32.2.1 - 2024-07-02
---------------------
Expand Down
2 changes: 1 addition & 1 deletion src/textcode/markup.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def is_debian_tag(t):
r"|"
r"href"
r"|"
"['\"]?/>"
r"['\"]?/>"
r"|"
r"/>"
r")",
Expand Down
Loading