Skip to content
Merged
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
6 changes: 3 additions & 3 deletions ass_tag_analyzer/ass_type_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ class TypeParser:

"""
From python documentation
\s
\\s
For Unicode (str) patterns:
[...]. If the ASCII flag is used, only [ \t\n\r\f\v] is matched.
\d
[...]. If the ASCII flag is used, only [ \\t\\n\\r\\f\\v] is matched.
\\d
For Unicode (str) patterns:
[...]. If the ASCII flag is used only [0-9] is matched.
Libass
Expand Down
Loading